Skip to content

Commit 44d43a6

Browse files
committed
Bump version to 0.11.0
1 parent 287bde6 commit 44d43a6

File tree

11 files changed

+18
-18
lines changed

11 files changed

+18
-18
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.10.0",
4+
version = "0.11.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.10.0"
12+
version = "0.11.0"
1313

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

docs/changelog.md

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

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

17-
## Next
17+
## 0.11.0
1818

19-
Unreleased.
19+
Released 2025-11-23.
2020

2121
* Add [unpack](syntax.md#unpack): `..` and `...` syntax that can be used inside
2222
lists, sets, and dicts to unpack one collection into another.

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.10.0/rcl-0.10.0-x86_64-unknown-linux-gnu
15+
curl -Lo ~/.local/bin/rcl https://github.com/ruuda/rcl/releases/download/v0.11.0/rcl-0.11.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.10.0' -- --help
49+
nix run 'github:ruuda/rcl?ref=v0.11.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.10.0#pyrcl --print-out-paths)/lib python3
56+
PYTHONPATH=$(nix build github:ruuda/rcl?ref=v0.11.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.10.0"
21+
version = "0.11.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.10.0"
22+
version = "0.11.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.10.0"
9+
version = "0.11.0"
1010

1111
[grammars]
1212
rcl = { commit = "8e12740263615de4e5697b5ae4701dd1092a3e6d", 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.10.0"
23+
version = "0.11.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.10.0"
38+
version = "0.11.0"

0 commit comments

Comments
 (0)