From 32970836b8c827b65fe206ae2f2e653ddd38f060 Mon Sep 17 00:00:00 2001 From: Robert MacEachern Date: Mon, 25 Nov 2024 12:37:35 -0600 Subject: [PATCH] Bumping versions to 5.1.0. --- CHANGELOG.md | 17 +++++++++++------ SampleApp/Podfile.lock | 12 ++++++------ version.rb | 2 +- 3 files changed, 18 insertions(+), 13 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f6bf8ed03..61564a628 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,8 +11,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added -- The `accessibilityIdentifier` can now be set on `AttributedLabel`. - ### Removed ### Changed @@ -27,7 +25,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Internal -# Past Releases +## [5.1.0] - 2024-11-25 + +### Added + +- The `accessibilityIdentifier` can now be set on `AttributedLabel`. + +### Internal + +- Added release and changelog managements scripts to streamline releases. ## [5.0.1] - 2024-11-04 @@ -116,8 +122,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - `AccessibilityElement` now supports providing arbitrary strings to assistive devices using the `AXCustomContent` protocol. -### Removed - ### Changed - The behavior of `name` of `ElementPreview` has been change, affecting the SwiftUI `previewName`. Instead of including device or size information (i.e. `sizeThatFits - \(name)`), it now either defaults to the Xcode default if given an empty string, and shows _only_ the `name` if `name` is non-empty. @@ -1135,7 +1139,7 @@ searchField - First stable release. -[main]: https://github.com/square/Blueprint/compare/5.0.1...HEAD +[main]: https://github.com/square/Blueprint/compare/5.1.0...HEAD [5.0.1]: https://github.com/square/Blueprint/compare/5.0.0...5.0.1 [5.0.0]: https://github.com/square/Blueprint/compare/4.3.0...5.0.0 [4.3.0]: https://github.com/square/Blueprint/compare/4.2.1...4.3.0 @@ -1273,3 +1277,4 @@ searchField [#19]: https://github.com/square/Blueprint/pull/19 [#18]: https://github.com/square/Blueprint/pull/18 [#15]: https://github.com/square/Blueprint/pull/15 +[5.1.0]: https://github.com/square/Blueprint/compare/5.0.1...5.1.0 diff --git a/SampleApp/Podfile.lock b/SampleApp/Podfile.lock index dc577436e..7f0f9cbe8 100644 --- a/SampleApp/Podfile.lock +++ b/SampleApp/Podfile.lock @@ -1,8 +1,8 @@ PODS: - - BlueprintUI (5.0.1) - - BlueprintUI/Tests (5.0.1) - - BlueprintUICommonControls (5.0.1): - - BlueprintUI (= 5.0.1) + - BlueprintUI (5.1.0) + - BlueprintUI/Tests (5.1.0) + - BlueprintUICommonControls (5.1.0): + - BlueprintUI (= 5.1.0) DEPENDENCIES: - BlueprintUI (from `../BlueprintUI.podspec`) @@ -16,8 +16,8 @@ EXTERNAL SOURCES: :path: "../BlueprintUICommonControls.podspec" SPEC CHECKSUMS: - BlueprintUI: 8d6991d64adcd61b7421266ccad95b2a3a3ca656 - BlueprintUICommonControls: 060db17f4b9b72920aa950e2dfbd7808840f4b52 + BlueprintUI: 9ba3799699c813cf86165fc36e646bb10e7e5b47 + BlueprintUICommonControls: 91307b32a90175365c389ef0a033c516bd56feb7 PODFILE CHECKSUM: 1cffac4623851f31dc42270ba99701e3825e6d67 diff --git a/version.rb b/version.rb index 673865d9e..d3e65e2d9 100644 --- a/version.rb +++ b/version.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -BLUEPRINT_VERSION ||= '5.0.1' +BLUEPRINT_VERSION ||= '5.1.0' SWIFT_VERSION ||= File.read(File.join(__dir__, '.swift-version'))