diff --git a/MODULE.bazel b/MODULE.bazel index 5f95ddb..021c6d9 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -1,6 +1,6 @@ module( name = "swift-tomldecoder", - version = "0.4.4", + version = "0.4.5", compatibility_level = 0, ) diff --git a/Sources/TOMLDecoder/TOMLDecoder.docc/CHANGELOG.md b/Sources/TOMLDecoder/TOMLDecoder.docc/CHANGELOG.md index a1cad9b..9fb6e1e 100644 --- a/Sources/TOMLDecoder/TOMLDecoder.docc/CHANGELOG.md +++ b/Sources/TOMLDecoder/TOMLDecoder.docc/CHANGELOG.md @@ -4,6 +4,10 @@ Also known as release notes. ## In Development +## 0.4.5 + +- Fixed various edge cases that causes crashes. + ## 0.4.4 - Add support for TOML 1.1.0 (thanks, @nikitabobko!) diff --git a/Sources/TOMLDecoder/TOMLDecoder.docc/GettingStarted.md b/Sources/TOMLDecoder/TOMLDecoder.docc/GettingStarted.md index 2c8b93b..4c0a0e3 100644 --- a/Sources/TOMLDecoder/TOMLDecoder.docc/GettingStarted.md +++ b/Sources/TOMLDecoder/TOMLDecoder.docc/GettingStarted.md @@ -13,7 +13,7 @@ Let's assume you are starting with a [SwiftPM](https://docs.swift.org/swiftpm/do Add the following to your package dependencies: ```swift -.package(url: "https://github.com/dduan/TOMLDecoder", exactly: "0.4.4"), +.package(url: "https://github.com/dduan/TOMLDecoder", exactly: "0.4.5"), ``` @@ -32,7 +32,7 @@ You can use TOMLDecoder from the Bazel Central Registry. Include it in your MODULE.bazel: ``` -bazel_dep(name = 'swift-tomldecoder', version = '0.4.4') +bazel_dep(name = 'swift-tomldecoder', version = '0.4.5') ``` And add `@swift-tomldecoder//:TOMLDecoder` as a dependency to your target as needed. diff --git a/Sources/TOMLDecoder/TOMLDecoder.docc/VersionedDocs.md b/Sources/TOMLDecoder/TOMLDecoder.docc/VersionedDocs.md index dafe46f..048a5f0 100644 --- a/Sources/TOMLDecoder/TOMLDecoder.docc/VersionedDocs.md +++ b/Sources/TOMLDecoder/TOMLDecoder.docc/VersionedDocs.md @@ -3,7 +3,7 @@ Links to docs for each TOMLDecoder release. * [The main branch](https://dduan.github.io/TOMLDecoder/main/documentation/tomldecoder/) -* [Version 0.4.4](https://dduan.github.io/TOMLDecoder/0.4.x/documentation/tomldecoder/) (latest release) +* [Version 0.4.5](https://dduan.github.io/TOMLDecoder/0.4.x/documentation/tomldecoder/) (latest release) * [Version 0.3.x](https://github.com/dduan/TOMLDecoder/tree/0.3.3/Documentation) * [Version 0.2.x](https://github.com/dduan/TOMLDecoder/tree/0.2.2/Documentation) * [Version 0.1.x](https://github.com/dduan/TOMLDecoder/tree/0.1.6/Documentation)