From b25fab0f2cd872ab40d29517fe7b50374b300f9b Mon Sep 17 00:00:00 2001 From: amplitude-sdk-bot Date: Fri, 5 Apr 2024 18:00:17 +0000 Subject: [PATCH] chore(release): 8.19.1 [skip ci] ## [8.19.1](https://github.com/amplitude/Amplitude-iOS/compare/v8.19.0...v8.19.1) (2024-04-05) ### Bug Fixes * assign deviceId correctly on new device ([#492](https://github.com/amplitude/Amplitude-iOS/issues/492)) ([a200db0](https://github.com/amplitude/Amplitude-iOS/commit/a200db0e981cfc2ce104f222676ed4e2748bd9c8)) * initialize device info before generating the device ID ([#491](https://github.com/amplitude/Amplitude-iOS/issues/491)) ([7960a7e](https://github.com/amplitude/Amplitude-iOS/commit/7960a7e8118b8eae507b73e380a9d8057cf0f4ea)) --- Amplitude.podspec | 2 +- CHANGELOG.md | 8 ++++++++ Sources/Amplitude/AMPConstants.m | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/Amplitude.podspec b/Amplitude.podspec index 7c0daab4..77f3a919 100644 --- a/Amplitude.podspec +++ b/Amplitude.podspec @@ -1,4 +1,4 @@ -amplitude_version = "8.19.0" # Version is managed automatically by semantic-release, please don't change it manually +amplitude_version = "8.19.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 8b7d62ea..7be84695 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## [8.19.1](https://github.com/amplitude/Amplitude-iOS/compare/v8.19.0...v8.19.1) (2024-04-05) + + +### Bug Fixes + +* assign deviceId correctly on new device ([#492](https://github.com/amplitude/Amplitude-iOS/issues/492)) ([a200db0](https://github.com/amplitude/Amplitude-iOS/commit/a200db0e981cfc2ce104f222676ed4e2748bd9c8)) +* initialize device info before generating the device ID ([#491](https://github.com/amplitude/Amplitude-iOS/issues/491)) ([7960a7e](https://github.com/amplitude/Amplitude-iOS/commit/7960a7e8118b8eae507b73e380a9d8057cf0f4ea)) + # [8.19.0](https://github.com/amplitude/Amplitude-iOS/compare/v8.18.3...v8.19.0) (2024-04-04) diff --git a/Sources/Amplitude/AMPConstants.m b/Sources/Amplitude/AMPConstants.m index 5c4ac2d4..4ca23fd2 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.19.0"; // Version is managed automatically by semantic-release, please don't change it manually +NSString *const kAMPVersion = @"8.19.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";