Skip to content

Commit 7412136

Browse files
authored
Use the new release automation solution (#497)
1 parent 6986a99 commit 7412136

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
lines changed

.shiprc

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"files": {
3+
"Auth0/Info.plist": [],
4+
"README.md": ["~> {MAJOR}.{MINOR}"]
5+
},
6+
"postbump": "bundle update",
7+
"prefixVersion": false
8+
}

App/Info.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>APPL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>1.35.0</string>
18+
<string>0.1.0</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleURLTypes</key>

Auth0/Info-tvOS.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>1.35.0</string>
18+
<string>0.1.0</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

Auth0Tests/Info.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>BNDL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>1.35.0</string>
18+
<string>0.1.0</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

OAuth2Mac/Info.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<key>CFBundlePackageType</key>
1818
<string>APPL</string>
1919
<key>CFBundleShortVersionString</key>
20-
<string>1.35.0</string>
20+
<string>0.1.0</string>
2121
<key>CFBundleURLTypes</key>
2222
<array>
2323
<dict>

OAuth2TV/Info.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>APPL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>1.35.0</string>
18+
<string>0.1.0</string>
1919
<key>CFBundleVersion</key>
2020
<string>1</string>
2121
<key>LSRequiresIPhoneOS</key>

fastlane/Fastfile

+1-9
Original file line numberDiff line numberDiff line change
@@ -52,14 +52,7 @@ platform :ios do
5252
test
5353
end
5454

55-
desc "Releases the library to Cocoapods & Github Releases and updates README/CHANGELOG"
56-
desc "You need to specify the type of release with the `bump` parameter with the values [major|minor|patch]"
57-
lane :release_prepare do |options|
58-
release_options = {repository: 'Auth0.swift', xcodeproj: 'Auth0.xcodeproj', target: 'Auth0.iOS'}.merge(options)
59-
prepare_release release_options
60-
end
61-
62-
desc "Performs the prepared release by creating a tag and pusing to remote"
55+
desc "Performs the prepared release by creating a tag and pushing to remote"
6356
lane :release_perform do
6457
perform_release target: 'Auth0.iOS'
6558
end
@@ -69,4 +62,3 @@ platform :ios do
6962
publish_release repository: 'Auth0.swift'
7063
end
7164
end
72-

0 commit comments

Comments
 (0)