Skip to content

Commit

Permalink
0.1.1 (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
andersio authored and RuiAAPeres committed Oct 22, 2017
1 parent c7ed0f8 commit 43d62ef
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ReactiveFeedback.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|

s.name = "ReactiveFeedback"
s.version = "0.1"
s.version = "0.1.1"
s.summary = "Unidirectional reactive architecture"

s.description = <<-DESC
Expand Down
2 changes: 1 addition & 1 deletion ReactiveFeedback/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>0.1</string>
<string>0.1.1</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key>
Expand Down
24 changes: 24 additions & 0 deletions script/update-version
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
#!/bin/bash

if [[ -z "$1" ]]; then
echo "Please specify a version tag."
exit
fi

PRERELEASE_STRIPPED=$(echo "$1" | perl -0777 -ne '/([0-9]+)\.([0-9]+)\.([0-9]+)(-.*)?/ and print "$1.$2.$3"')

if [[ -z "$PRERELEASE_STRIPPED" ]]; then
echo "The version tag is not semver compliant."
exit
fi

CURRENT_TAG=$(perl -0777 -ne '/s.version([\s]+)=([\s]+)"(.+)"/ and print $3' *.podspec)
echo "Current tag: $CURRENT_TAG"

perl -0777 -i -pe 's/s.version([\s]+)=([\s]+)"'${CURRENT_TAG}'"/s.version$1=$2"'${1}'"/' *.podspec
perl -0777 -i -pe 's/g>'${CURRENT_TAG}'<\/str/g>'${PRERELEASE_STRIPPED}'<\/str/' */Info.plist
perl -0777 -i -pe 's/g>'${CURRENT_TAG}'<\/str/g>'${PRERELEASE_STRIPPED}'<\/str/' */*/Info.plist
sed -i '' '3i\
\
# '${1} CHANGELOG.md

0 comments on commit 43d62ef

Please sign in to comment.