Skip to content

Commit bf494bc

Browse files
committed
Prepare 0.7.1 release
1 parent 780ca2f commit bf494bc

File tree

5 files changed

+26
-5
lines changed

5 files changed

+26
-5
lines changed

VERSION.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.7.0
1+
0.7.1

codegen/src/PklProject

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ package {
2121
baseUri = "package://pkg.pkl-lang.org/pkl-swift/\(name)"
2222
packageZipUrl =
2323
"https://github.com/apple/pkl-swift/releases/download/\(name)@\(version)/\(name)@\(version).zip"
24-
version = read("../../VERSION.txt").text
24+
version = read("../../VERSION.txt").text.trim()
2525
authors {
2626
"The Pkl Authors <[email protected]>"
2727
}

docs/antora.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: swift
22
title: Pkl Swift Bindings
3-
version: 0.7.0
3+
version: 0.7.1
44
nav:
55
- nav.adoc

docs/modules/ROOT/pages/CHANGELOG.adoc

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,26 @@
11
= Changelog
22

3+
[[release-0.7.1]]
4+
== 0.7.1 (2025-11-20)
5+
6+
=== Fixes
7+
8+
* Fix issue where the `pkl server` subprocess can hang (https://github.com/apple/pkl-swift/pull/86[#86]).
9+
* Fix incorrect code generation for enum types in Swift 6 (https://github.com/apple/pkl-swift/pull/87[#87]).
10+
11+
=== Miscellaneous
12+
13+
* Tidy up phony targets in Makefile (https://github.com/apple/pkl-swift/pull/83[#83]).
14+
* Switch CI to GitHub Actions (https://github.com/apple/pkl-swift/pull/84[#84], https://github.com/apple/pkl-swift/pull/85[#85]).
15+
16+
=== Contributors ❤️
17+
18+
Thank you to all our contributors!
19+
20+
* https://github.com/bioball[@bioball]
21+
* https://github.com/HT154[@HT154]
22+
* https://github.com/johnliedtke[@johnliedtke]
23+
324
[[release-0.7.0]]
425
== 0.7.0 (2025-11-05)
526

@@ -43,7 +64,7 @@ Thank you to all our contributors!
4364
* Adds support for Swift 6 (https://github.com/apple/pkl-swift/pull/61[#61], https://github.com/apple/pkl-swift/pull/68[#68]).
4465
* Adds support for decoding `Class` and `TypeAlias` values (https://github.com/apple/pkl-swift/pull/64[#64]).
4566

46-
=== Breaking Changes
67+
=== Breaking Changes
4768

4869
* The code generation of optional keys has changed. A `Mapping` or `Map` with an optional key will be represented as `OptionalDictionaryKey<T>` in Swift. For example, `Mapping<String?, String>` becomes `[OptionalDictionaryKey<String>: String]` in Swift (https://github.com/apple/pkl-swift/pull/66[#66]).
4970
+
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
:pkl-swift-version: 0.7.0
1+
:pkl-swift-version: 0.7.1

0 commit comments

Comments
 (0)