Skip to content

Commit bb85188

Browse files
committed
Bump version to 0.13.0
1 parent b19fcf8 commit bb85188

File tree

11 files changed

+19
-19
lines changed

11 files changed

+19
-19
lines changed

Cargo.lock

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

Cargo.rcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
package = {
33
name = "rcl",
4-
version = "0.12.0",
4+
version = "0.13.0",
55
authors = ["Ruud van Asseldonk <dev@veniogames.com>"],
66
edition = "2021",
77
license = "Apache-2.0",

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ description = "A reasonable configuration language."
99
edition = "2021"
1010
license = "Apache-2.0"
1111
name = "rcl"
12-
version = "0.12.0"
12+
version = "0.13.0"
1313

1414
[profile]
1515
release = { lto = "thin", panic = "abort", strip = true }

docs/changelog.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ compatibility impact will be clearly marked as such in the changelog.
1414

1515
[semver]: https://semver.org/
1616

17-
## Next
17+
## 0.13.0
1818

19-
Unreleased.
19+
Released 2026-02-28.
2020

2121
* Add support for <abbr>TOML 1.1</abbr> as an output format. The existing
2222
`toml` output format is now an alias for `toml-1.0`, so there is no change
2323
in behavior for existing usage.
24-
* Fix a bug that prevented parsing nested functions.
24+
* Fix a bug that in some cases prevented parsing nested functions.
2525

2626
Thanks to matthieucx for contributing to this release.
2727

docs/installation.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Binaries for several platforms are available from the [GitHub releases page][gh-
1212
Download the one appropriate one to a location on your `PATH`, and make it
1313
executable:
1414

15-
curl -Lo ~/.local/bin/rcl https://github.com/ruuda/rcl/releases/download/v0.12.0/rcl-0.12.0-x86_64-unknown-linux-gnu
15+
curl -Lo ~/.local/bin/rcl https://github.com/ruuda/rcl/releases/download/v0.13.0/rcl-0.13.0-x86_64-unknown-linux-gnu
1616
chmod +x ~/.local/bin/rcl
1717
rcl --help
1818

@@ -46,14 +46,14 @@ source, including cross-compilation and building static binaries.
4646
The repository includes a Nix flake. You can run <abbr>RCL</abbr> with a
4747
[flake-enabled][flakes] version of [Nix][nix], such as Nix 2.18:
4848

49-
nix run 'github:ruuda/rcl?ref=v0.12.0' -- --help
49+
nix run 'github:ruuda/rcl?ref=v0.13.0' -- --help
5050

5151
[flakes]: https://nixos.org/manual/nix/stable/command-ref/new-cli/nix3-flake
5252
[nix]: https://nixos.org/download
5353

5454
The Nix flake also includes the Python module:
5555

56-
PYTHONPATH=$(nix build github:ruuda/rcl?ref=v0.12.0#pyrcl --print-out-paths)/lib python3
56+
PYTHONPATH=$(nix build github:ruuda/rcl?ref=v0.13.0#pyrcl --print-out-paths)/lib python3
5757

5858
The Nix flake also includes a shell with all the tools needed for development,
5959
as well as the environment that is tested on <abbr>CI</abbr>.

fuzz/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ license = "Apache-2.0"
1818
metadata = { cargo-fuzz = true }
1919
name = "rcl-fuzz"
2020
publish = false
21-
version = "0.12.0"
21+
version = "0.13.0"
2222

2323
[[bin]]
2424
name = "smithctl"

grammar/tree-sitter-rcl/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ include = ["bindings/rust/*", "grammar.js", "queries/*", "src/*"]
1919
keywords = ["incremental", "parsing", "rcl"]
2020
license = "Apache-2.0"
2121
name = "tree-sitter-rcl"
22-
version = "0.12.0"
22+
version = "0.13.0"

grammar/zed/extension.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ id = "rcl"
66
name = "RCL"
77
repository = "https://github.com/rcl-lang/zed-rcl"
88
schema_version = 1
9-
version = "0.12.0"
9+
version = "0.13.0"
1010

1111
[grammars]
1212
rcl = { commit = "9e14baa313f79d1717cf81e8e35f051c7da77073", repository = "https://github.com/rcl-lang/tree-sitter-rcl" }

pyrcl/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ description = "Python bindings to the RCL configuration language."
2020
edition = "2021"
2121
license = "Apache-2.0"
2222
name = "pyrcl"
23-
version = "0.12.0"
23+
version = "0.13.0"

pyrcl/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@ name = "rcl-lang"
3535
readme = "package_readme.md"
3636
requires-python = ">= 3.10"
3737
urls = { Changelog = "https://docs.ruuda.nl/rcl/changelog/", Codeberg = "https://codeberg.org/ruuda/rcl", Documentation = "https://docs.ruuda.nl/rcl/python_bindings/", GitHub = "https://github.com/ruuda/rcl", Homepage = "https://rcl-lang.org/" }
38-
version = "0.12.0"
38+
version = "0.13.0"

0 commit comments

Comments
 (0)