Skip to content

Commit

Permalink
Prepare for release 4.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
migs647 committed Aug 28, 2020
1 parent 594d049 commit dc73445
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Analytics.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "Analytics"
s.version = "4.0.4"
s.version = "4.0.5"
s.summary = "The hassle-free way to add analytics to your iOS app."

s.description = <<-DESC
Expand Down
2 changes: 1 addition & 1 deletion Analytics/Classes/SEGAnalytics.m
Original file line number Diff line number Diff line change
Expand Up @@ -534,7 +534,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.4";
return @"4.0.5";
}

#pragma mark - Helpers
Expand Down
2 changes: 1 addition & 1 deletion Analytics/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>4.0.4</string>
<string>4.0.5</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key>
Expand Down
15 changes: 11 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,26 +1,33 @@
Change Log
==========
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.
* [New](https://github.com/segmentio/analytics-ios/pull/930) Deprecated configuration access and updated associated tests.
* [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 (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 (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 (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 (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.
Expand Down
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.0.4"
github "segmentio/analytics-ios" "4.0.5"
# Use a local project when debugging
# git "~/Code/segmentio/analytics-ios/" "master"

0 comments on commit dc73445

Please sign in to comment.