From 74661cfa23328d9e2b46e5baee869043adeece50 Mon Sep 17 00:00:00 2001 From: Bryan Mitchell <97151843+BryanMitchell-heap@users.noreply.github.com> Date: Thu, 30 Nov 2023 15:08:06 -0800 Subject: [PATCH] [HEAP-50024] 0.5.0 Release (#139) --- CHANGELOG.md | 5 ++++- Development/Sources/HeapSwiftCore/Version.swift | 2 +- HeapSwiftCore.podspec | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ae395eb..15f1268 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.5.0] + ### Fixed - Fixed crash on `Heap.attachWebView` when called twice on the same web view prior to iOS 15. @@ -137,7 +139,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Support for manual capture within WKWebView. - Support for platforms targeting Swift: macOS, watchOS, iOS, iPadOS, tvOS. -[Unreleased]: https://github.com/heap/heap-swift-core-sdk/compare/0.4.0...main +[Unreleased]: https://github.com/heap/heap-swift-core-sdk/compare/0.5.0...main +[0.5.0]: https://github.com/heap/heap-swift-core-sdk/compare/0.4.0...0.5.0 [0.4.0]: https://github.com/heap/heap-swift-core-sdk/compare/0.3.1...0.4.0 [0.3.1]: https://github.com/heap/heap-swift-core-sdk/compare/0.3.0...0.3.1 [0.3.0]: https://github.com/heap/heap-swift-core-sdk/compare/0.2.1...0.3.0 diff --git a/Development/Sources/HeapSwiftCore/Version.swift b/Development/Sources/HeapSwiftCore/Version.swift index 729276e..77b916e 100644 --- a/Development/Sources/HeapSwiftCore/Version.swift +++ b/Development/Sources/HeapSwiftCore/Version.swift @@ -5,7 +5,7 @@ struct Version { static let major = 0 /// Minor version. - static let minor = 4 + static let minor = 5 /// Revision number. static let revision = 0 diff --git a/HeapSwiftCore.podspec b/HeapSwiftCore.podspec index d412f7f..9386ad8 100644 --- a/HeapSwiftCore.podspec +++ b/HeapSwiftCore.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'HeapSwiftCore' - s.version = '0.4.0' + s.version = '0.5.0' s.license = { :type => 'MIT' } s.summary = 'The core Heap library used for apps on Apple platforms.' s.homepage = 'https://heap.io'