Skip to content

Commit dc73445

Browse files
committed
Prepare for release 4.0.5
1 parent 594d049 commit dc73445

File tree

5 files changed

+15
-8
lines changed

5 files changed

+15
-8
lines changed

Analytics.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "Analytics"
3-
s.version = "4.0.4"
3+
s.version = "4.0.5"
44
s.summary = "The hassle-free way to add analytics to your iOS app."
55

66
s.description = <<-DESC

Analytics/Classes/SEGAnalytics.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -534,7 +534,7 @@ + (NSString *)version
534534
{
535535
// this has to match the actual version, NOT what's in info.plist
536536
// because Apple only accepts X.X.X as versions in the review process.
537-
return @"4.0.4";
537+
return @"4.0.5";
538538
}
539539

540540
#pragma mark - Helpers

Analytics/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.4</string>
18+
<string>4.0.5</string>
1919
<key>CFBundleVersion</key>
2020
<string>$(CURRENT_PROJECT_VERSION)</string>
2121
<key>NSPrincipalClass</key>

CHANGELOG.md

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,33 @@
11
Change Log
22
==========
3+
Version 4.0.5 (pre-release) (28 August, 2020)
4+
-----------------------------
5+
* [Fix](https://github.com/segmentio/analytics-ios/pull/937) Fixed issue where non-serializable types would get into payload.
6+
* [Fix](https://github.com/segmentio/analytics-ios/pull/931) Fixed double device payload.
7+
* [New](https://github.com/segmentio/analytics-ios/pull/930) Deprecated configuration access and updated associated tests.
8+
* [Fix](https://github.com/segmentio/analytics-ios/pull/925) Disregard payloads that fail conversion from plist to json.
9+
* [New](https://github.com/segmentio/analytics-ios/pull/922) Added Swift and Carthage badging.
310

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

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

16-
Version 4.0.2 (25 June, 2020)
23+
Version 4.0.2 (pre-release) (25 June, 2020)
1724
-----------------------------
1825
* [New](https://github.com/segmentio/analytics-ios/pull/913) Separate public utils from private utils appropriately.
1926
* [New](https://github.com/segmentio/analytics-ios/pull/912) Payload Info & Traits Fixes.
2027
* [New](https://github.com/segmentio/analytics-ios/pull/911) Updated SPM for code coverage compatibility.
2128
* [New](https://github.com/segmentio/analytics-ios/pull/909) Removed Quick and Nimble, updated unit tests.
2229

23-
Version 4.0.1 (18 June, 2020)
30+
Version 4.0.1 (pre-release) (18 June, 2020)
2431
-----------------------------
2532
* [New](https://github.com/segmentio/analytics-ios/pull/905) Added global state management; Middleware now receive all context data.
2633
* [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.4"
1+
github "segmentio/analytics-ios" "4.0.5"
22
# Use a local project when debugging
33
# git "~/Code/segmentio/analytics-ios/" "master"

0 commit comments

Comments
 (0)