Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare 4.0.1 release #497

Merged
merged 1 commit into from
Jun 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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
Expand Down Expand Up @@ -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
Expand Down
12 changes: 6 additions & 6 deletions SampleApp/Podfile.lock
Original file line number Diff line number Diff line change
@@ -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`)
Expand All @@ -16,8 +16,8 @@ EXTERNAL SOURCES:
:path: "../BlueprintUICommonControls.podspec"

SPEC CHECKSUMS:
BlueprintUI: 1818f187a6be6c69266a4e30f03a6ad7755530e9
BlueprintUICommonControls: 6ceffc16822dea3d1910029aa87eed7a386e4e3b
BlueprintUI: 9628bfc92acbe53cb9bed04978a552c343a09726
BlueprintUICommonControls: 1b0c018299c541dd57459e76512a025bdc3d4ee7

PODFILE CHECKSUM: 1cffac4623851f31dc42270ba99701e3825e6d67

Expand Down
2 changes: 1 addition & 1 deletion version.rb
Original file line number Diff line number Diff line change
@@ -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'))

Expand Down
Loading