From 0dcbfbfed94a8c5c3fac8658c476c8a47e79b8ea Mon Sep 17 00:00:00 2001 From: Kyle Van Essen Date: Tue, 4 Jun 2024 11:33:52 -0700 Subject: [PATCH] Prepare 4.0.1 release (#497) --- CHANGELOG.md | 9 +++++++-- SampleApp/Podfile.lock | 12 ++++++------ version.rb | 2 +- 3 files changed, 14 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9abf204eb..0deac32a0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Main] ### Fixed -- Fixed a bug where defining a `Box` with a `.rounded` `CornerStyle` with `Corners` set to anything other than `.all` would sometimes still round all of the corners. ### Added @@ -28,6 +27,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 # Past Releases +## [4.0.1] - 2024-06-04 + +### Fixed +- Fixed a bug where defining a `Box` with a `.rounded` `CornerStyle` with `Corners` set to anything other than `.all` would sometimes still round all of the corners. + ## [4.0.0] - 2024-04-29 ### Added @@ -1076,7 +1080,8 @@ searchField - First stable release. -[main]: https://github.com/square/Blueprint/compare/4.0.0...HEAD +[main]: https://github.com/square/Blueprint/compare/4.0.1...HEAD +[4.0.1]: https://github.com/square/Blueprint/compare/4.0.0...4.0.1 [4.0.0]: https://github.com/square/Blueprint/compare/3.1.0...4.0.0 [3.1.0]: https://github.com/square/Blueprint/compare/3.0.0...3.1.0 [3.0.0]: https://github.com/square/Blueprint/compare/2.2.0...3.0.0 diff --git a/SampleApp/Podfile.lock b/SampleApp/Podfile.lock index 718d0c1f0..2c0e8474d 100644 --- a/SampleApp/Podfile.lock +++ b/SampleApp/Podfile.lock @@ -1,8 +1,8 @@ PODS: - - BlueprintUI (4.0.0) - - BlueprintUI/Tests (4.0.0) - - BlueprintUICommonControls (4.0.0): - - BlueprintUI (= 4.0.0) + - BlueprintUI (4.0.1) + - BlueprintUI/Tests (4.0.1) + - BlueprintUICommonControls (4.0.1): + - BlueprintUI (= 4.0.1) DEPENDENCIES: - BlueprintUI (from `../BlueprintUI.podspec`) @@ -16,8 +16,8 @@ EXTERNAL SOURCES: :path: "../BlueprintUICommonControls.podspec" SPEC CHECKSUMS: - BlueprintUI: 1818f187a6be6c69266a4e30f03a6ad7755530e9 - BlueprintUICommonControls: 6ceffc16822dea3d1910029aa87eed7a386e4e3b + BlueprintUI: 9628bfc92acbe53cb9bed04978a552c343a09726 + BlueprintUICommonControls: 1b0c018299c541dd57459e76512a025bdc3d4ee7 PODFILE CHECKSUM: 1cffac4623851f31dc42270ba99701e3825e6d67 diff --git a/version.rb b/version.rb index 994072260..cf4547e4b 100644 --- a/version.rb +++ b/version.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -BLUEPRINT_VERSION ||= '4.0.0' +BLUEPRINT_VERSION ||= '4.0.1' SWIFT_VERSION ||= File.read(File.join(__dir__, '.swift-version'))