diff --git a/Amplitude.podspec b/Amplitude.podspec index cae7b8d4..bf2f02f6 100644 --- a/Amplitude.podspec +++ b/Amplitude.podspec @@ -1,4 +1,4 @@ -amplitude_version = "8.9.0" # Version is managed automatically by semantic-release, please don't change it manually +amplitude_version = "8.10.0" # Version is managed automatically by semantic-release, please don't change it manually Pod::Spec.new do |s| s.name = "Amplitude" diff --git a/CHANGELOG.md b/CHANGELOG.md index 79199a12..3a452164 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +# [8.10.0](https://github.com/amplitude/Amplitude-iOS/compare/v8.9.0...v8.10.0) (2022-03-31) + + +### Features + +* Add versionId to tracking plan data ([#392](https://github.com/amplitude/Amplitude-iOS/issues/392)) ([a09f022](https://github.com/amplitude/Amplitude-iOS/commit/a09f02230a76b85ce3e12400cf6613cd03a68ab0)) + # [8.9.0](https://github.com/amplitude/Amplitude-iOS/compare/v8.8.0...v8.9.0) (2022-03-30) diff --git a/Sources/Amplitude/AMPConstants.m b/Sources/Amplitude/AMPConstants.m index c42e0a21..125f657f 100644 --- a/Sources/Amplitude/AMPConstants.m +++ b/Sources/Amplitude/AMPConstants.m @@ -24,7 +24,7 @@ #import "AMPConstants.h" NSString *const kAMPLibrary = @"amplitude-ios"; -NSString *const kAMPVersion = @"8.9.0"; // Version is managed automatically by semantic-release, please don't change it manually +NSString *const kAMPVersion = @"8.10.0"; // Version is managed automatically by semantic-release, please don't change it manually NSString *const kAMPUnknownLibrary = @"unknown-library"; NSString *const kAMPUnknownVersion = @"unknown-version"; NSString *const kAMPEventLogDomain = @"api2.amplitude.com";