Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .shiprc
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"files": {
"JWTDecode/Info.plist": [],
"README.md": ["~> {MAJOR}.{MINOR}"]
},
"postbump": "bundle update",
"prefixVersion": false
}
2 changes: 1 addition & 1 deletion JWTDecodeTests/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>BNDL</string>
<key>CFBundleShortVersionString</key>
<string>2.6.1</string>
<string>0.1.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
8 changes: 0 additions & 8 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -55,13 +55,6 @@ platform :ios do
test
end

desc "Releases the library to Cocoapods & Github Releases and updates README/CHANGELOG"
desc "You need to specify the type of release with the `bump` parameter with the values [major|minor|patch]"
lane :release_prepare do |options|
release_options = {repository: 'JWTDecode.swift', xcodeproj: 'JWTDecode.xcodeproj', target: 'JWTDecode-iOS'}.merge(options)
prepare_release release_options
end

desc "Performs the prepared release by creating a tag and pusing to remote"
lane :release_perform do
perform_release target: 'JWTDecode-iOS'
Expand All @@ -72,4 +65,3 @@ platform :ios do
publish_release repository: 'JWTDecode.swift'
end
end