Skip to content

Commit e353277

Browse files
committed
Prepare for release 4.1.1
1 parent c399f3e commit e353277

File tree

7 files changed

+12
-6
lines changed

7 files changed

+12
-6
lines changed

Analytics.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |s|
22
s.name = "Analytics"
33
s.module_name = "Segment"
4-
s.version = "4.1.0"
4+
s.version = "4.1.1"
55
s.summary = "The hassle-free way to add analytics to your iOS app."
66

77
s.description = <<-DESC

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
Change Log
22
==========
3+
Version 4.1.1 *(27 October, 2020)*
4+
-----------------------------
5+
* [Fix](https://github.com/segmentio/analytics-ios/pull/955) Fixed example projects using old branch for SPM.
6+
* [Fix](https://github.com/segmentio/analytics-ios/pull/953) Repaired mac example project.
7+
* [Fix] Fixed carthage support for main library and destinations.
8+
39
Version 4.1.0 *(19 October, 2020)*
410
-----------------------------
511
* [New](https://github.com/segmentio/analytics-ios/pull/945) Added Webhook Integration.

Examples/CarthageExample/Cartfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
github "segmentio/analytics-ios" "4.1.0"
1+
github "segmentio/analytics-ios" "4.1.1"
22
# Use a local project when debugging
33
# git "~/Code/segmentio/analytics-ios/" "master"
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
github "segmentio/analytics-ios" "4.0.2"
1+
github "segmentio/analytics-ios" "4.1.1"

RELEASING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Releasing
22
=========
33

4-
1. Update the version in `SEGAnalytics.m`, `Analytics.podspec`, `Analytics/Info.plist` and `Examples/CarthageExample/Cartfile` to the next release version.
4+
1. Update the version in `SEGAnalytics.m`, `Analytics.podspec`, `Segment/Info.plist` and `Examples/CarthageExample/Cartfile` to the next release version.
55
2. Update the `CHANGELOG.md` for the impending release.
66
3. `git commit -am "Prepare for release X.Y.Z."` (where X.Y.Z is the new version).
77
4. `git tag -a X.Y.Z -m "Version X.Y.Z"` (where X.Y.Z is the new version).

Segment/Classes/SEGAnalytics.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -529,7 +529,7 @@ + (NSString *)version
529529
{
530530
// this has to match the actual version, NOT what's in info.plist
531531
// because Apple only accepts X.X.X as versions in the review process.
532-
return @"4.1.0";
532+
return @"4.1.1";
533533
}
534534

535535
#pragma mark - Helpers

Segment/Info.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>4.1.0</string>
18+
<string>4.1.1</string>
1919
<key>CFBundleVersion</key>
2020
<string>$(CURRENT_PROJECT_VERSION)</string>
2121
<key>NSPrincipalClass</key>

0 commit comments

Comments
 (0)