Skip to content

Commit d7abbde

Browse files
committed
release: bump versions
1 parent 8435b9b commit d7abbde

File tree

8 files changed

+14
-11
lines changed

8 files changed

+14
-11
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
#### [Unreleased]
44

5+
#### [0.13.0] - 2025-09-10
6+
57
- Support enum struct variants in `SimpleType`
68
- BREAKING CHANGE: Change minimum supported version to 1.76.0 because of the `wasm_bindgen` dependency
79

@@ -141,7 +143,8 @@
141143
- Initial release
142144

143145
<!-- next-url -->
144-
[Unreleased]: https://github.com/Nadrieril/dhall-rust/compare/serde_dhall-v0.12.1...HEAD
146+
[Unreleased]: https://github.com/Nadrieril/dhall-rust/compare/serde_dhall-v0.13.0...HEAD
147+
[0.13.0]: https://github.com/Nadrieril/dhall-rust/compare/serde_dhall-v0.12.1...serde_dhall-v0.13.0
145148
[0.12.1]: https://github.com/Nadrieril/dhall-rust/compare/serde_dhall-v0.12.0...serde_dhall-v0.12.1
146149
[0.12.0]: https://github.com/Nadrieril/dhall-rust/compare/serde_dhall-v0.11.2...serde_dhall-v0.12.0
147150
[0.11.2]: https://github.com/Nadrieril/dhall-rust/compare/serde_dhall-v0.11.1...serde_dhall-v0.11.2

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Add this to your `Cargo.toml`:
5353

5454
```toml
5555
[dependencies]
56-
serde_dhall = "0.12.1"
56+
serde_dhall = "0.13.0"
5757
```
5858

5959
Reading Dhall files is easy and leverages the wonderful [`serde`](https://crates.io/crates/serde) library.

dhall/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "dhall"
33
# remember to update html_root_url
4-
version = "0.12.0"
4+
version = "0.13.0"
55
authors = ["NanoTech <[email protected]>", "Nadrieril <[email protected]>"]
66
license = "BSD-2-Clause"
77
description = "Implementation of the Dhall configuration language"

dhall/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![doc(html_root_url = "https://docs.rs/dhall/0.12.0")]
1+
#![doc(html_root_url = "https://docs.rs/dhall/0.13.0")]
22
#![allow(
33
clippy::implicit_hasher,
44
clippy::module_inception,

release.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ push = false
22
publish = true
33
allow-branch = ["master"]
44
dependent-version = "upgrade"
5-
pre-release-commit-message = "release: {{crate_name}} version {{version}}"
5+
pre-release-commit-message = "release: bump versions"
66

77
[[pre-release-replacements]]
88
file = "src/lib.rs"

serde_dhall/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "serde_dhall"
33
# remember to update html_root_url, README and changelog
4-
version = "0.12.1"
4+
version = "0.13.0"
55
authors = ["Nadrieril <[email protected]>"]
66
license = "BSD-2-Clause"
77
description = "Dhall support for serde"
@@ -17,7 +17,7 @@ reqwest = [ "dhall/reqwest" ]
1717

1818
[dependencies]
1919
serde = { version = "1.0", features = ["derive"] }
20-
dhall = { version = "=0.12.0", path = "../dhall", default-features = false }
20+
dhall = { version = "=0.13.0", path = "../dhall", default-features = false }
2121
dhall_proc_macros = { version = "=0.6.1", path = "../dhall_proc_macros" }
2222
doc-comment = "0.3"
2323
url = "2.1"

serde_dhall/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![doc(html_root_url = "https://docs.rs/serde_dhall/0.12.1")]
1+
#![doc(html_root_url = "https://docs.rs/serde_dhall/0.13.0")]
22
#![allow(unknown_lints)] // for `rustdoc::missing_doc_code_examples`
33
#![warn(missing_docs, rustdoc::missing_doc_code_examples)]
44
//! [Dhall][dhall] is a programmable configuration language that provides a non-repetitive

0 commit comments

Comments
 (0)