Skip to content

Commit

Permalink
release: Blueprint 5.1.0 (#528)
Browse files Browse the repository at this point in the history
> [!NOTE]
> This PR was generated via the new [release
script](#529). Usage:
`Scripts/release.sh --version 5.1.0`

https://github.com/square/Blueprint/blob/main/CHANGELOG.md

Post-merge steps:

- Once the PR is merged, fetch changes and tag the release, using the
merge commit:
  ```
  git fetch
  git tag 5.1.0 <merge commit SHA>
  git push origin 5.1.0
  ```

- Publish to CocoaPods:
  ```
  bundle exec pod trunk push BlueprintUI.podspec
bundle exec pod trunk push --synchronous
BlueprintUICommonControls.podspec
  ```
  • Loading branch information
robmaceachern authored Nov 25, 2024
1 parent 9b973eb commit 89f75ba
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 12 deletions.
15 changes: 10 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -27,6 +25,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Internal

## [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
Expand Down Expand Up @@ -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.
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
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 (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`)
Expand All @@ -16,8 +16,8 @@ EXTERNAL SOURCES:
:path: "../BlueprintUICommonControls.podspec"

SPEC CHECKSUMS:
BlueprintUI: 8d6991d64adcd61b7421266ccad95b2a3a3ca656
BlueprintUICommonControls: 060db17f4b9b72920aa950e2dfbd7808840f4b52
BlueprintUI: 9ba3799699c813cf86165fc36e646bb10e7e5b47
BlueprintUICommonControls: 91307b32a90175365c389ef0a033c516bd56feb7

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 ||= '5.0.1'
BLUEPRINT_VERSION ||= '5.1.0'

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

Expand Down

0 comments on commit 89f75ba

Please sign in to comment.