Skip to content

Commit

Permalink
🍏 Update version to 3.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mmaatttt committed Aug 29, 2024
1 parent 277b642 commit 14ec155
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 17 deletions.
2 changes: 1 addition & 1 deletion Appcues.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Pod::Spec.new do |s|
s.name = 'Appcues'
s.module_name = 'AppcuesKit'
s.version = '3.3.0'
s.version = '3.3.1'
s.summary = 'Appcues iOS SDK allows you to integrate Appcues experiences into your native iOS apps'

s.description = <<-DESC
Expand Down
2 changes: 1 addition & 1 deletion Sources/AppcuesKit/Version.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@
import Foundation

// BREAKING.FEATURE.FIX
internal let __appcues_version = "3.3.0"
internal let __appcues_version = "3.3.1"
15 changes: 0 additions & 15 deletions release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -69,12 +69,6 @@ then
exit 1
fi

if [ -n "$(git status --porcelain)" ]
then
echo "There are uncommited changes. Please commit and create a pull request or stash them.";
exit 1
fi

versionFile="./Sources/AppcuesKit/Version.swift"

# get last line in Version.swift
Expand Down Expand Up @@ -149,12 +143,3 @@ gh release upload $newVersion AppcuesKit.xcframework.zip
# push the updated podspec
# the version tag need to validate the podspec should have been created above
pod trunk push Appcues.podspec

# if the new version has a '-' in it, then it's a pre-release version (eg 1.0.0-rc.1, 1.0.0-beta.1, 1.0.0-alpha.1)
if [[ "$newVersion" == *-* ]]
then
echo "Pre-release version. No docs deployed."
else
# compile the docs for the new version and deploy to GitHub pages
./fastlane/docs.sh
fi

0 comments on commit 14ec155

Please sign in to comment.