Skip to content

Commit

Permalink
Bumping version to 3.0.0 (#482)
Browse files Browse the repository at this point in the history
  • Loading branch information
nsillik committed Feb 21, 2024
1 parent e27debd commit ecb8002
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 17 deletions.
32 changes: 22 additions & 10 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Fixed

- Fixed an issue where `AttributedLabel` would not properly handle tapping on links when a label was stretched.

### Added

- `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.
- Updated minimum deployment target from iOS 14 to iOS 15.

### Deprecated

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

### Internal

# Past Releases

## [3.0.0] - 2024-02-21

### Fixed

- Fixed an issue where `AttributedLabel` would not properly handle tapping on links when a label was stretched.

### Added

- `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.
- Updated minimum deployment target from iOS 14 to iOS 15.

### Internal
- Updated CI to use M1 machines, Xcode 15.1, and Ruby 3.2.2.
- Added iOS 17 snapshot images.
- Bump Swift version to 5.9.
- Update Ruby gems.

# Past Releases

## [2.2.0] - 2023-09-22

### Fixed
Expand Down Expand Up @@ -1045,7 +1056,8 @@ searchField

- First stable release.

[main]: https://github.com/square/Blueprint/compare/2.2.0...HEAD
[main]: https://github.com/square/Blueprint/compare/3.0.0...HEAD
[3.0.0]: https://github.com/square/Blueprint/compare/2.2.0...3.0.0
[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
Expand Down
1 change: 1 addition & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@ GEM

PLATFORMS
arm64-darwin-22
arm64-darwin-23

DEPENDENCIES
cocoapods (~> 1.11)
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.2.0)
- BlueprintUI/Tests (2.2.0)
- BlueprintUICommonControls (2.2.0):
- BlueprintUI (= 2.2.0)
- BlueprintUI (3.0.0)
- BlueprintUI/Tests (3.0.0)
- BlueprintUICommonControls (3.0.0):
- BlueprintUI (= 3.0.0)

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

SPEC CHECKSUMS:
BlueprintUI: 93a1d72fb4f987818dc2aa63754b4f954c76705f
BlueprintUICommonControls: 071ae9df5220ce4f441e5b61af3c89f2e012ca43
BlueprintUI: 76e054862aceb2b014a7953464c5769af55c13d5
BlueprintUICommonControls: 9219a0b82ea4b95bbeef44d3fbc65b9b01f1acba

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 ||= '2.2.0'
BLUEPRINT_VERSION ||= '3.0.0'

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

Expand Down

0 comments on commit ecb8002

Please sign in to comment.