From bfdec453a31fd35942a619ef472fcf2f09e2313a Mon Sep 17 00:00:00 2001 From: amplitude-sdk-bot Date: Wed, 24 Apr 2024 00:48:27 +0000 Subject: [PATCH] chore(release): 8.19.2 [skip ci] ## [8.19.2](https://github.com/amplitude/Amplitude-iOS/compare/v8.19.1...v8.19.2) (2024-04-24) ### Bug Fixes * Prevent crashes in multithreaded environments with sqlite. ([#495](https://github.com/amplitude/Amplitude-iOS/issues/495)) ([7020c95](https://github.com/amplitude/Amplitude-iOS/commit/7020c953ea36f8d66cbf1bd5a7c67c3a40ae42ee)) * specify resource_bundle vs resource for resources in cocoapods ([#493](https://github.com/amplitude/Amplitude-iOS/issues/493)) ([f780c12](https://github.com/amplitude/Amplitude-iOS/commit/f780c123ca21339d37277f00449cb0f6494e676a)) --- 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 f852e996..8486985d 100644 --- a/Amplitude.podspec +++ b/Amplitude.podspec @@ -1,4 +1,4 @@ -amplitude_version = "8.19.1" # Version is managed automatically by semantic-release, please don't change it manually +amplitude_version = "8.19.2" # 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 7be84695..74ca053c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## [8.19.2](https://github.com/amplitude/Amplitude-iOS/compare/v8.19.1...v8.19.2) (2024-04-24) + + +### Bug Fixes + +* Prevent crashes in multithreaded environments with sqlite. ([#495](https://github.com/amplitude/Amplitude-iOS/issues/495)) ([7020c95](https://github.com/amplitude/Amplitude-iOS/commit/7020c953ea36f8d66cbf1bd5a7c67c3a40ae42ee)) +* specify resource_bundle vs resource for resources in cocoapods ([#493](https://github.com/amplitude/Amplitude-iOS/issues/493)) ([f780c12](https://github.com/amplitude/Amplitude-iOS/commit/f780c123ca21339d37277f00449cb0f6494e676a)) + ## [8.19.1](https://github.com/amplitude/Amplitude-iOS/compare/v8.19.0...v8.19.1) (2024-04-05) diff --git a/Sources/Amplitude/AMPConstants.m b/Sources/Amplitude/AMPConstants.m index 4ca23fd2..cf87d6bd 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.1"; // Version is managed automatically by semantic-release, please don't change it manually +NSString *const kAMPVersion = @"8.19.2"; // 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";