From a2b9abb161b7631382ba35c2367aa050190d3e0d Mon Sep 17 00:00:00 2001 From: Robert MacEachern Date: Fri, 22 Sep 2023 11:19:14 -0500 Subject: [PATCH] Bumping versions to 2.2.0 --- CHANGELOG.md | 17 ++++++++++++----- SampleApp/Podfile.lock | 12 ++++++------ version.rb | 2 +- 3 files changed, 19 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c6194ea8..cf2c0c10a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,12 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed -- Fixed a bug that could cause a crash or incorrect layout when an element with lazily resolved content (such as `GeometryReader`) generated a subtree that varied within a layout pass. ([#468]) - ### Added -- Added a `TintAdjustmentMode` element and `.tintAdjustmentMode(:)` modifier for finer control of tint color during modal presentations. - ### Removed ### Changed @@ -31,6 +27,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 # Past Releases +## [2.2.0] - 2023-09-22 + +### Fixed + +- Fixed a bug that could cause a crash or incorrect layout when an element with lazily resolved content (such as `GeometryReader`) generated a subtree that varied within a layout pass. ([#468]) + +### Added + +- Added a `TintAdjustmentMode` element and `.tintAdjustmentMode(:)` modifier for finer control of tint color during modal presentations. + ## [2.1.0] - 2023-09-06 ### Fixed @@ -1027,7 +1033,8 @@ searchField - First stable release. -[main]: https://github.com/square/Blueprint/square/2.1.0...HEAD +[main]: https://github.com/square/Blueprint/square/2.2.0...HEAD +[2.2.0]: https://github.com/square/Blueprint/square/2.1.0...2.2.0 [2.1.0]: https://github.com/square/Blueprint/compare/2.0.0...2.1.0 [2.0.0]: https://github.com/square/Blueprint/compare/1.0.0...2.0.0 [1.0.0]: https://github.com/square/Blueprint/compare/0.50.0...1.0.0 diff --git a/SampleApp/Podfile.lock b/SampleApp/Podfile.lock index 6a62f185d..011bba5a2 100644 --- a/SampleApp/Podfile.lock +++ b/SampleApp/Podfile.lock @@ -1,8 +1,8 @@ PODS: - - BlueprintUI (2.1.0) - - BlueprintUI/Tests (2.1.0) - - BlueprintUICommonControls (2.1.0): - - BlueprintUI (= 2.1.0) + - BlueprintUI (2.2.0) + - BlueprintUI/Tests (2.2.0) + - BlueprintUICommonControls (2.2.0): + - BlueprintUI (= 2.2.0) DEPENDENCIES: - BlueprintUI (from `../BlueprintUI.podspec`) @@ -16,8 +16,8 @@ EXTERNAL SOURCES: :path: "../BlueprintUICommonControls.podspec" SPEC CHECKSUMS: - BlueprintUI: 28927923fa2d40263758c27bfac9c5520a392e46 - BlueprintUICommonControls: 2feade14574118d7d87c050e43d978455f222e3b + BlueprintUI: 33bad09c9cc634d9e8c9df742e2616ec8629bcf9 + BlueprintUICommonControls: 29472ce36386e43ba6d6c2b7959d0033670923f9 PODFILE CHECKSUM: c795e247aa1c5eb825186ef8192821306c59c891 diff --git a/version.rb b/version.rb index a2c52fa84..92329a4bb 100644 --- a/version.rb +++ b/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true -BLUEPRINT_VERSION ||= '2.1.0' +BLUEPRINT_VERSION ||= '2.2.0' SWIFT_VERSION ||= File.read(File.join(__dir__, '.swift-version'))