diff --git a/CHANGELOG.md b/CHANGELOG.md index d55255d05..829eb79c1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,14 @@ Change Log ========== -Version 4.0.5 (pre-release) (28 August, 2020) +Version 4.1.0 *(19 October, 2020)* +----------------------------- +* [New](https://github.com/segmentio/analytics-ios/pull/945) Added Webhook Integration. +* [New](https://github.com/segmentio/analytics-ios/pull/942) Renamed module from `Analytics` to `Segment`. +* [Fix](https://github.com/segmentio/analytics-ios/pull/941) Removed unused mobile attribution. +* [New](https://github.com/segmentio/analytics-ios/pull/940) Added ability for customer to make their types serializable. +* [New](https://github.com/segmentio/analytics-ios/pull/950) Added necessary changes for Edge Functions. + +Version 4.0.5 (pre-release) *(28 August, 2020)* ----------------------------- * [Fix](https://github.com/segmentio/analytics-ios/pull/937) Fixed issue where non-serializable types would get into payload. * [Fix](https://github.com/segmentio/analytics-ios/pull/931) Fixed double device payload. @@ -8,26 +16,26 @@ Version 4.0.5 (pre-release) (28 August, 2020) * [Fix](https://github.com/segmentio/analytics-ios/pull/925) Disregard payloads that fail conversion from plist to json. * [New](https://github.com/segmentio/analytics-ios/pull/922) Added Swift and Carthage badging. -Version 4.0.4 (pre-release) (14 July, 2020) +Version 4.0.4 (pre-release) *(14 July, 2020)* ----------------------------- * [New](https://github.com/segmentio/analytics-ios/pull/918) Added MacOS support. * [Fix](https://github.com/segmentio/analytics-ios/pull/921) Fixed SEGLog permissions. * [Fix](https://github.com/segmentio/analytics-ios/pull/920) Adopted Swift 5 syntax in tests. Removed SwiftTryCatch dependency for tests. Fixed deadlock from #916. -Version 4.0.3 (pre-release) (6 July, 2020) +Version 4.0.3 (pre-release) *(6 July, 2020)* ----------------------------- * [Fix](https://github.com/segmentio/analytics-ios/pull/917) Fixed an issue with old traits overwriting new traits. * [New](https://github.com/segmentio/analytics-ios/pull/915) Added full example flow with Swift Package Manager compatibility. * [Fix](https://github.com/segmentio/analytics-ios/pull/914) Fix SwiftUI previews in macOS Catalyst builds. -Version 4.0.2 (pre-release) (25 June, 2020) +Version 4.0.2 (pre-release) *(25 June, 2020)* ----------------------------- * [New](https://github.com/segmentio/analytics-ios/pull/913) Separate public utils from private utils appropriately. * [New](https://github.com/segmentio/analytics-ios/pull/912) Payload Info & Traits Fixes. * [New](https://github.com/segmentio/analytics-ios/pull/911) Updated SPM for code coverage compatibility. * [New](https://github.com/segmentio/analytics-ios/pull/909) Removed Quick and Nimble, updated unit tests. -Version 4.0.1 (pre-release) (18 June, 2020) +Version 4.0.1 (pre-release) *(18 June, 2020)* ----------------------------- * [New](https://github.com/segmentio/analytics-ios/pull/905) Added global state management; Middleware now receive all context data. * [New](https://github.com/segmentio/analytics-ios/pull/885) change logic for screen naming conventions. diff --git a/Segment/Classes/SEGAnalytics.m b/Segment/Classes/SEGAnalytics.m index 3c3d04392..0d7f10b78 100644 --- a/Segment/Classes/SEGAnalytics.m +++ b/Segment/Classes/SEGAnalytics.m @@ -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.0.5"; + return @"4.1.0"; } #pragma mark - Helpers