Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 9234124

Browse files
committedApr 10, 2024··
Release 5.1.2
1 parent d5ce6b2 commit 9234124

File tree

6 files changed

+10
-9
lines changed

6 files changed

+10
-9
lines changed
 

‎.bazelversion

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7.1.0
1+
7.1.1

‎CHANGELOG.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Main
1+
## 5.1.2
22

33
##### Breaking
44

@@ -10,7 +10,8 @@
1010

1111
##### Bug Fixes
1212

13-
* None.
13+
* Fix support for Bazel 7.x.
14+
[JP Simard](https://github.com/jpsim)
1415

1516
## 5.1.1
1617

‎MODULE.bazel

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
module(
22
name = "yams",
3-
version = "5.1.1",
3+
version = "5.1.2",
44
compatibility_level = 1,
55
)
66

7+
bazel_dep(name = "apple_support", version = "1.15.1")
78
bazel_dep(name = "rules_swift", version = "1.18.0", repo_name = "build_bazel_rules_swift")
89

9-
bazel_dep(name = "apple_support", version = "1.15.1", dev_dependency = True)
1010
bazel_dep(name = "platforms", version = "0.0.9", dev_dependency = True)
11-
bazel_dep(name = "rules_apple", version = "3.5.0", dev_dependency = True)
11+
bazel_dep(name = "rules_apple", version = "3.5.1", dev_dependency = True)

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ cmake --build /path/to/build
3838

3939
### Swift Package Manager
4040

41-
Add `.package(url: "https://github.com/jpsim/Yams.git", from: "5.1.1")` to your
41+
Add `.package(url: "https://github.com/jpsim/Yams.git", from: "5.1.2")` to your
4242
`Package.swift` file's `dependencies`.
4343

4444
### CocoaPods

‎Yams.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'Yams'
3-
s.version = '5.1.1'
3+
s.version = '5.1.2'
44
s.summary = 'A sweet and swifty YAML parser.'
55
s.homepage = 'https://github.com/jpsim/Yams'
66
s.source = { :git => s.homepage + '.git', :tag => s.version }

‎Yams.xcodeproj/Yams_Info.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<key>CFBundlePackageType</key>
1515
<string>FMWK</string>
1616
<key>CFBundleShortVersionString</key>
17-
<string>5.1.1</string>
17+
<string>5.1.2</string>
1818
<key>CFBundleSignature</key>
1919
<string>????</string>
2020
<key>CFBundleVersion</key>

0 commit comments

Comments
 (0)
Please sign in to comment.