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.1.1 #469

Closed
wants to merge 1 commit into from
Closed
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
11 changes: 8 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@ 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

### Removed
Expand All @@ -29,6 +27,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

# Past Releases

## [2.1.1] - 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])

## [2.1.0] - 2023-09-06

### Fixed
Expand Down Expand Up @@ -1025,7 +1029,8 @@ searchField

- First stable release.

[main]: https://github.com/square/Blueprint/square/2.1.0...HEAD
[main]: https://github.com/square/Blueprint/square/2.1.1...HEAD
[2.1.1]: https://github.com/square/Blueprint/square/2.1.0...2.1.1
[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.1.1)
- BlueprintUI/Tests (2.1.1)
- BlueprintUICommonControls (2.1.1):
- BlueprintUI (= 2.1.1)

DEPENDENCIES:
- BlueprintUI (from `../BlueprintUI.podspec`)
Expand All @@ -16,8 +16,8 @@ EXTERNAL SOURCES:
:path: "../BlueprintUICommonControls.podspec"

SPEC CHECKSUMS:
BlueprintUI: 28927923fa2d40263758c27bfac9c5520a392e46
BlueprintUICommonControls: 2feade14574118d7d87c050e43d978455f222e3b
BlueprintUI: c006ab14a70db8e1190d58dc362813956572f16d
BlueprintUICommonControls: e069a8428561241b326ccc47c7fee8bb1e33aa38

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.1.1'

SWIFT_VERSION ||= File.read(File.join(__dir__, '.swift-version'))
Loading