Skip to content

Commit fc4d2a5

Browse files
authored
Prepare release for 0.4.2 (#276)
1 parent 1de93d0 commit fc4d2a5

File tree

5 files changed

+8
-4
lines changed

5 files changed

+8
-4
lines changed

MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module(
22
name = "swift-tomldecoder",
3-
version = "0.4.1",
3+
version = "0.4.2",
44
compatibility_level = 0,
55
)
66

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ let team = try TOMLDecoder().decode(Team.self, from: tomlData)
2020

2121
Read the documentation to learn more:
2222

23-
- for [0.4.1](https://dduan.github.io/TOMLDecoder/0.4.x/documentation/tomldecoder/), the latest release
23+
- for [0.4.2](https://dduan.github.io/TOMLDecoder/0.4.x/documentation/tomldecoder/), the latest release
2424
- for [the main branch](https://dduan.github.io/TOMLDecoder/main/documentation/tomldecoder/)
2525

2626
## License

Sources/TOMLDecoder/TOMLDecoder.docc/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ Also known as release notes.
66

77
## 0.4.1
88

9+
- Fixed a project configuration that prevented SwiftPM consumption of the package
10+
11+
## 0.4.1
12+
913
This release introduces source-breaking changes from 0.3.x.
1014

1115
The lower-level parser APIs and architecture are introduced with an

Sources/TOMLDecoder/TOMLDecoder.docc/GettingStarted.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Let's assume you are starting with a [SwiftPM](https://docs.swift.org/swiftpm/do
1313
Add the following to your package dependencies:
1414

1515
```swift
16-
.package(url: "https://github.com/dduan/TOMLDecoder", exactly: "0.4.1")),
16+
.package(url: "https://github.com/dduan/TOMLDecoder", exactly: "0.4.2")),
1717
```
1818

1919

Sources/TOMLDecoder/TOMLDecoder.docc/VersionedDocs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Links to docs for each TOMLDecoder releases.
44

55
* [the main branch](https://dduan.github.io/TOMLDecoder/main/documentation/tomldecoder/)
6-
* [Version 0.4.1](https://dduan.github.io/TOMLDecoder/0.4.x/documentation/tomldecoder/) (latest release)
6+
* [Version 0.4.2](https://dduan.github.io/TOMLDecoder/0.4.x/documentation/tomldecoder/) (latest release)
77
* [Version 0.3.x](https://github.com/dduan/TOMLDecoder/tree/0.3.3/Documentation)
88
* [Version 0.2.x](https://github.com/dduan/TOMLDecoder/tree/0.2.2/Documentation)
99
* [Version 0.1.x](https://github.com/dduan/TOMLDecoder/tree/0.1.6/Documentation)

0 commit comments

Comments
 (0)