Skip to content

Commit

Permalink
Release 5.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jpsim committed Apr 8, 2024
1 parent b131f95 commit 23b6264
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 7 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,19 @@
## Main
## 5.1.1

##### Breaking

* None.

##### Enhancements

* Allow specifying a `newLineScalarStyle` for encoding string scalars with newlines when using `YAMLEncoder`
* Allow specifying a `newLineScalarStyle` for encoding string scalars with
newlines when using `YAMLEncoder`.
[Tejas Sharma](https://github.com/tejassharma96)
[#405](https://github.com/jpsim/Yams/issues/405)

* Improve support for Bazel 7.x.
[JP Simard](https://github.com/jpsim)

##### Bug Fixes

* None.
Expand Down
2 changes: 1 addition & 1 deletion MODULE.bazel
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module(
name = "yams",
version = "5.1.0",
version = "5.1.1",
compatibility_level = 1,
)

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ cmake --build /path/to/build

### Swift Package Manager

Add `.package(url: "https://github.com/jpsim/Yams.git", from: "5.1.0")` to your
Add `.package(url: "https://github.com/jpsim/Yams.git", from: "5.1.1")` to your
`Package.swift` file's `dependencies`.

### CocoaPods
Expand Down
4 changes: 2 additions & 2 deletions Yams.podspec
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
Pod::Spec.new do |s|
s.name = 'Yams'
s.version = '5.1.0'
s.version = '5.1.1'
s.summary = 'A sweet and swifty YAML parser.'
s.homepage = 'https://github.com/jpsim/Yams'
s.source = { :git => s.homepage + '.git', :tag => s.version }
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.authors = { 'JP Simard' => '[email protected]',
'Norio Nomura' => '[email protected]' }
s.source_files = 'Sources/**/*.{h,c,swift}'
s.swift_versions = ['5.4', '5.5', '5.6', '5.7', '5.8']
s.swift_versions = ['5.4', '5.5', '5.6', '5.7', '5.8', '5.9', '5.10']
s.pod_target_xcconfig = { 'APPLICATION_EXTENSION_API_ONLY' => 'YES' }
s.ios.deployment_target = '11.0'
s.osx.deployment_target = '10.13'
Expand Down
2 changes: 1 addition & 1 deletion Yams.xcodeproj/Yams_Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>5.1.0</string>
<string>5.1.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down

0 comments on commit 23b6264

Please sign in to comment.