From f6b19721defbb5424941a4ff80407804a664d15b Mon Sep 17 00:00:00 2001 From: amplitude-sdk-bot Date: Mon, 26 Oct 2020 19:21:18 +0000 Subject: [PATCH] chore(release): 7.2.0 [skip ci] # [7.2.0](https://github.com/amplitude/Amplitude-iOS/compare/v7.1.1...v7.2.0) (2020-10-26) ### Bug Fixes * macOS 10.11/10.13 compile warning fix ([#309](https://github.com/amplitude/Amplitude-iOS/issues/309)) ([d834b6c](https://github.com/amplitude/Amplitude-iOS/commit/d834b6c58d0aae77802399330e751fc418b66f3d)) ### Features * Add setSessionId to public API ([#312](https://github.com/amplitude/Amplitude-iOS/issues/312)) ([7db7d34](https://github.com/amplitude/Amplitude-iOS/commit/7db7d3441d16a8a86b712b1e0a8fa9918b3a40ae)) --- Amplitude.podspec | 2 +- CHANGELOG.md | 12 ++++++++++++ Sources/Amplitude/AMPConstants.m | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/Amplitude.podspec b/Amplitude.podspec index 22e24149..4c96ff13 100644 --- a/Amplitude.podspec +++ b/Amplitude.podspec @@ -1,4 +1,4 @@ -amplitude_version = "7.1.1" # Version is managed automatically by semantic-release, please don't change it manually +amplitude_version = "7.2.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 449ed795..e0ea788c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +# [7.2.0](https://github.com/amplitude/Amplitude-iOS/compare/v7.1.1...v7.2.0) (2020-10-26) + + +### Bug Fixes + +* macOS 10.11/10.13 compile warning fix ([#309](https://github.com/amplitude/Amplitude-iOS/issues/309)) ([d834b6c](https://github.com/amplitude/Amplitude-iOS/commit/d834b6c58d0aae77802399330e751fc418b66f3d)) + + +### Features + +* Add setSessionId to public API ([#312](https://github.com/amplitude/Amplitude-iOS/issues/312)) ([7db7d34](https://github.com/amplitude/Amplitude-iOS/commit/7db7d3441d16a8a86b712b1e0a8fa9918b3a40ae)) + ## [7.1.1](https://github.com/amplitude/Amplitude-iOS/compare/v7.1.0...v7.1.1) (2020-10-20) diff --git a/Sources/Amplitude/AMPConstants.m b/Sources/Amplitude/AMPConstants.m index e1280205..f44d2a1c 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 = @"7.1.1"; // Version is managed automatically by semantic-release, please don't change it manually +NSString *const kAMPVersion = @"7.2.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";