Skip to content

Commit f5f92e2

Browse files
author
Brandon Sneed
committed
Prepare for release 4.1.0.
1 parent 5f3d3e8 commit f5f92e2

File tree

5 files changed

+19
-11
lines changed

5 files changed

+19
-11
lines changed

Analytics.podspec

Lines changed: 3 additions & 3 deletions
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.0.5"
4+
s.version = "4.1.0"
55
s.summary = "The hassle-free way to add analytics to your iOS app."
66

77
s.description = <<-DESC
@@ -22,7 +22,7 @@ Pod::Spec.new do |s|
2222
s.frameworks = 'Security', 'StoreKit', 'SystemConfiguration', 'UIKit'
2323

2424
s.source_files = [
25-
'Segment/Classes/**/*',
26-
'Segment/Internal/**/*'
25+
'Segment/Classes/**/*.{h,m}',
26+
'Segment/Internal/**/*.{h,m}'
2727
]
2828
end

CHANGELOG.md

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,41 @@
11
Change Log
22
==========
3-
Version 4.0.5 (pre-release) (28 August, 2020)
3+
Version 4.1.0 *(19 October, 2020)*
4+
-----------------------------
5+
* [New](https://github.com/segmentio/analytics-ios/pull/945) Added Webhook Integration.
6+
* [New](https://github.com/segmentio/analytics-ios/pull/942) Renamed module from `Analytics` to `Segment`.
7+
* [Fix](https://github.com/segmentio/analytics-ios/pull/941) Removed unused mobile attribution.
8+
* [New](https://github.com/segmentio/analytics-ios/pull/940) Added ability for customer to make their types serializable.
9+
* [New](https://github.com/segmentio/analytics-ios/pull/950) Added necessary changes for Edge Functions.
10+
11+
Version 4.0.5 (pre-release) *(28 August, 2020)*
412
-----------------------------
513
* [Fix](https://github.com/segmentio/analytics-ios/pull/937) Fixed issue where non-serializable types would get into payload.
614
* [Fix](https://github.com/segmentio/analytics-ios/pull/931) Fixed double device payload.
715
* [New](https://github.com/segmentio/analytics-ios/pull/930) Deprecated configuration access and updated associated tests.
816
* [Fix](https://github.com/segmentio/analytics-ios/pull/925) Disregard payloads that fail conversion from plist to json.
917
* [New](https://github.com/segmentio/analytics-ios/pull/922) Added Swift and Carthage badging.
1018

11-
Version 4.0.4 (pre-release) (14 July, 2020)
19+
Version 4.0.4 (pre-release) *(14 July, 2020)*
1220
-----------------------------
1321
* [New](https://github.com/segmentio/analytics-ios/pull/918) Added MacOS support.
1422
* [Fix](https://github.com/segmentio/analytics-ios/pull/921) Fixed SEGLog permissions.
1523
* [Fix](https://github.com/segmentio/analytics-ios/pull/920) Adopted Swift 5 syntax in tests. Removed SwiftTryCatch dependency for tests. Fixed deadlock from #916.
1624

17-
Version 4.0.3 (pre-release) (6 July, 2020)
25+
Version 4.0.3 (pre-release) *(6 July, 2020)*
1826
-----------------------------
1927
* [Fix](https://github.com/segmentio/analytics-ios/pull/917) Fixed an issue with old traits overwriting new traits.
2028
* [New](https://github.com/segmentio/analytics-ios/pull/915) Added full example flow with Swift Package Manager compatibility.
2129
* [Fix](https://github.com/segmentio/analytics-ios/pull/914) Fix SwiftUI previews in macOS Catalyst builds.
2230

23-
Version 4.0.2 (pre-release) (25 June, 2020)
31+
Version 4.0.2 (pre-release) *(25 June, 2020)*
2432
-----------------------------
2533
* [New](https://github.com/segmentio/analytics-ios/pull/913) Separate public utils from private utils appropriately.
2634
* [New](https://github.com/segmentio/analytics-ios/pull/912) Payload Info & Traits Fixes.
2735
* [New](https://github.com/segmentio/analytics-ios/pull/911) Updated SPM for code coverage compatibility.
2836
* [New](https://github.com/segmentio/analytics-ios/pull/909) Removed Quick and Nimble, updated unit tests.
2937

30-
Version 4.0.1 (pre-release) (18 June, 2020)
38+
Version 4.0.1 (pre-release) *(18 June, 2020)*
3139
-----------------------------
3240
* [New](https://github.com/segmentio/analytics-ios/pull/905) Added global state management; Middleware now receive all context data.
3341
* [New](https://github.com/segmentio/analytics-ios/pull/885) change logic for screen naming conventions.

Examples/CarthageExample/Cartfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
github "segmentio/analytics-ios" "4.0.5"
1+
github "segmentio/analytics-ios" "4.1.0"
22
# Use a local project when debugging
33
# git "~/Code/segmentio/analytics-ios/" "master"

Segment/Classes/SEGAnalytics.m

Lines changed: 1 addition & 1 deletion
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.0.5";
532+
return @"4.1.0";
533533
}
534534

535535
#pragma mark - Helpers

Segment/Info.plist

Lines changed: 1 addition & 1 deletion
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.0.5</string>
18+
<string>4.1.0</string>
1919
<key>CFBundleVersion</key>
2020
<string>$(CURRENT_PROJECT_VERSION)</string>
2121
<key>NSPrincipalClass</key>

0 commit comments

Comments
 (0)