diff --git a/Amplitude.podspec b/Amplitude.podspec index be61002e..2d3c8f87 100644 --- a/Amplitude.podspec +++ b/Amplitude.podspec @@ -1,4 +1,4 @@ -amplitude_version = "8.14.0" # Version is managed automatically by semantic-release, please don't change it manually +amplitude_version = "8.14.1" # 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 73d91a6c..273ec88e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## [8.14.1](https://github.com/amplitude/Amplitude-iOS/compare/v8.14.0...v8.14.1) (2023-02-08) + + +### Bug Fixes + +* response handler when 200 and various errors ([#424](https://github.com/amplitude/Amplitude-iOS/issues/424)) ([74c9e57](https://github.com/amplitude/Amplitude-iOS/commit/74c9e5721cc6d4849eed5c55470a8437ad1ad987)) + # [8.14.0](https://github.com/amplitude/Amplitude-iOS/compare/v8.13.0...v8.14.0) (2022-10-05) diff --git a/Sources/Amplitude/AMPConstants.m b/Sources/Amplitude/AMPConstants.m index 1b639664..d3e6af20 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.14.0"; // Version is managed automatically by semantic-release, please don't change it manually +NSString *const kAMPVersion = @"8.14.1"; // 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";