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

Release 2.2.0 #470

Merged
merged 1 commit into from
Sep 22, 2023
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
17 changes: 12 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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/compare/2.2.0...HEAD
[2.2.0]: https://github.com/square/Blueprint/compare/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
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 (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`)
Expand All @@ -16,8 +16,8 @@ EXTERNAL SOURCES:
:path: "../BlueprintUICommonControls.podspec"

SPEC CHECKSUMS:
BlueprintUI: 28927923fa2d40263758c27bfac9c5520a392e46
BlueprintUICommonControls: 2feade14574118d7d87c050e43d978455f222e3b
BlueprintUI: 33bad09c9cc634d9e8c9df742e2616ec8629bcf9
BlueprintUICommonControls: 29472ce36386e43ba6d6c2b7959d0033670923f9

PODFILE CHECKSUM: c795e247aa1c5eb825186ef8192821306c59c891

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