Skip to content

Commit

Permalink
Prepare for release 4.1.1
Browse files Browse the repository at this point in the history
migs647 committed Oct 27, 2020

Verified

This commit was signed with the committer’s verified signature.
Tschakki Mona Bärenfänger
1 parent c399f3e commit e353277
Showing 7 changed files with 12 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Analytics.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|
s.name = "Analytics"
s.module_name = "Segment"
s.version = "4.1.0"
s.version = "4.1.1"
s.summary = "The hassle-free way to add analytics to your iOS app."

s.description = <<-DESC
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
Change Log
==========
Version 4.1.1 *(27 October, 2020)*
-----------------------------
* [Fix](https://github.com/segmentio/analytics-ios/pull/955) Fixed example projects using old branch for SPM.
* [Fix](https://github.com/segmentio/analytics-ios/pull/953) Repaired mac example project.
* [Fix] Fixed carthage support for main library and destinations.

Version 4.1.0 *(19 October, 2020)*
-----------------------------
* [New](https://github.com/segmentio/analytics-ios/pull/945) Added Webhook Integration.
2 changes: 1 addition & 1 deletion Examples/CarthageExample/Cartfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
github "segmentio/analytics-ios" "4.1.0"
github "segmentio/analytics-ios" "4.1.1"
# Use a local project when debugging
# git "~/Code/segmentio/analytics-ios/" "master"
2 changes: 1 addition & 1 deletion Examples/CarthageExample/Cartfile.resolved
Original file line number Diff line number Diff line change
@@ -1 +1 @@
github "segmentio/analytics-ios" "4.0.2"
github "segmentio/analytics-ios" "4.1.1"
2 changes: 1 addition & 1 deletion RELEASING.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Releasing
=========

1. Update the version in `SEGAnalytics.m`, `Analytics.podspec`, `Analytics/Info.plist` and `Examples/CarthageExample/Cartfile` to the next release version.
1. Update the version in `SEGAnalytics.m`, `Analytics.podspec`, `Segment/Info.plist` and `Examples/CarthageExample/Cartfile` to the next release version.
2. Update the `CHANGELOG.md` for the impending release.
3. `git commit -am "Prepare for release X.Y.Z."` (where X.Y.Z is the new version).
4. `git tag -a X.Y.Z -m "Version X.Y.Z"` (where X.Y.Z is the new version).
2 changes: 1 addition & 1 deletion Segment/Classes/SEGAnalytics.m
Original file line number Diff line number Diff line change
@@ -529,7 +529,7 @@ + (NSString *)version
{
// this has to match the actual version, NOT what's in info.plist
// because Apple only accepts X.X.X as versions in the review process.
return @"4.1.0";
return @"4.1.1";
}

#pragma mark - Helpers
2 changes: 1 addition & 1 deletion Segment/Info.plist
Original file line number Diff line number Diff line change
@@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>4.1.0</string>
<string>4.1.1</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key>

0 comments on commit e353277

Please sign in to comment.