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 version 4.3.0 #513

Merged
merged 1 commit into from
Sep 18, 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
17 changes: 12 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Added

- `BlueprintView` will now pass through touches to views lower in the view hierarchy if `passThroughTouches` is true.

### Removed

### Changed

- Moved `CornerStyle` out of the `Box` namespace, and is now a root type in `BlueprintUICommonControls`. `Box.CornerStyle` is still available as a typealias.

### Deprecated

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

# Past Releases

## [4.3.0] - 2024-09-18

### Added

- `BlueprintView` will now pass through touches to views lower in the view hierarchy if `passThroughTouches` is true.

### Changed

- Moved `CornerStyle` out of the `Box` namespace, and is now a root type in `BlueprintUICommonControls`. `Box.CornerStyle` is still available as a typealias.

## [4.2.1] - 2024-08-02

### Added
Expand Down Expand Up @@ -1107,7 +1113,8 @@ searchField

- First stable release.

[main]: https://github.com/square/Blueprint/compare/4.2.1...HEAD
[main]: https://github.com/square/Blueprint/compare/4.3.0...HEAD
[4.3.0]: https://github.com/square/Blueprint/compare/4.2.1...4.3.0
[4.2.1]: https://github.com/square/Blueprint/compare/4.2.0...4.2.1
[4.2.0]: https://github.com/square/Blueprint/compare/4.1.2...4.2.0
[4.1.2]: https://github.com/square/Blueprint/compare/4.1.1...4.1.2
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.2.1)
- BlueprintUI/Tests (4.2.1)
- BlueprintUICommonControls (4.2.1):
- BlueprintUI (= 4.2.1)
- BlueprintUI (4.3.0)
- BlueprintUI/Tests (4.3.0)
- BlueprintUICommonControls (4.3.0):
- BlueprintUI (= 4.3.0)

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

SPEC CHECKSUMS:
BlueprintUI: b1174cecb229b8f3357fb70e99b7d548b3c90586
BlueprintUICommonControls: 555c04035aeaf509d1c459f08af33e89d3594b85
BlueprintUI: be852bd1c895f5405af2c75a6aa8bef0dacf41a8
BlueprintUICommonControls: 41b66f55f4bbc8454e0e6fa01dbbabdd499accba

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.2.1'
BLUEPRINT_VERSION ||= '4.3.0'

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

Expand Down
Loading