Skip to content

Commit

Permalink
Bump version to 0.6.0
Browse files Browse the repository at this point in the history
See docs/changelog.md for a summary of the changes in this release.
  • Loading branch information
ruuda committed Dec 1, 2024
1 parent 95a8940 commit 1bac596
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 14 deletions.
10 changes: 5 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rcl"
version = "0.5.0"
version = "0.6.0"
authors = ["Ruud van Asseldonk <dev@veniogames.com>"]
edition = "2021"
license = "Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ source, but you can also use one of the options below that automate the process.
The repository includes a Nix flake. You can run <abbr>RCL</abbr> with a
[flake-enabled][flakes] version of [Nix][nix], such as Nix 2.18:

nix run 'github:ruuda/rcl?ref=v0.5.0' -- --help
nix run 'github:ruuda/rcl?ref=v0.6.0' -- --help

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

The Nix flake also includes the Python module:

PYTHONPATH=$(nix build github:ruuda/rcl?ref=v0.5.0#pyrcl --print-out-paths)/lib python3
PYTHONPATH=$(nix build github:ruuda/rcl?ref=v0.6.0#pyrcl --print-out-paths)/lib python3

The Nix flake also includes a shell with all the tools needed for development,
as well as the environment that is tested on <abbr>CI</abbr>.
Expand Down
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
forEachSystem (system:
let
name = "rcl";
version = "0.5.0";
version = "0.6.0";
overlays = [ rust-overlay.overlays.default ];
pkgs = import nixpkgs { inherit overlays system; };

Expand Down
2 changes: 1 addition & 1 deletion fuzz/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rcl-fuzz"
version = "0.5.0"
version = "0.6.0"
publish = false
edition = "2021"

Expand Down
2 changes: 1 addition & 1 deletion grammar/tree-sitter-rcl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "tree-sitter-rcl"
description = "RCL grammar for the tree-sitter parsing library"
keywords = ["incremental", "parsing", "rcl"]
categories = ["parsing", "text-editors"]
version = "0.5.0"
version = "0.6.0"
authors = ["Ruud van Asseldonk <dev@veniogames.com>"]
edition = "2021"
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion grammar/zed/extension.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
id = "rcl"
name = "RCL"
description = "Support for the RCL configuration language."
version = "0.5.0"
version = "0.6.0"
schema_version = 1
authors = ["Ruud van Asseldonk <dev@veniogames.com>"]
repository = "https://github.com/rcl-lang/zed-rcl"
Expand Down
2 changes: 1 addition & 1 deletion pyrcl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pyrcl"
version = "0.5.0"
version = "0.6.0"
authors = ["Ruud van Asseldonk <dev@veniogames.com>"]
edition = "2021"
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion wasm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rcl-wasm"
version = "0.5.0"
version = "0.6.0"
authors = ["Ruud van Asseldonk <dev@veniogames.com>"]
edition = "2021"
license = "Apache-2.0"
Expand Down

0 comments on commit 1bac596

Please sign in to comment.