diff --git a/Cargo.lock b/Cargo.lock index b42a43c6..a74df1f8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -299,7 +299,7 @@ dependencies = [ [[package]] name = "pyrcl" -version = "0.5.0" +version = "0.6.0" dependencies = [ "pyo3", "rcl", @@ -331,14 +331,14 @@ dependencies = [ [[package]] name = "rcl" -version = "0.5.0" +version = "0.6.0" dependencies = [ "unicode-width", ] [[package]] name = "rcl-fuzz" -version = "0.5.0" +version = "0.6.0" dependencies = [ "arbitrary", "libfuzzer-sys", @@ -351,7 +351,7 @@ dependencies = [ [[package]] name = "rcl-wasm" -version = "0.5.0" +version = "0.6.0" dependencies = [ "allocator-api2", "compiler_builtins", @@ -544,7 +544,7 @@ dependencies = [ [[package]] name = "tree-sitter-rcl" -version = "0.5.0" +version = "0.6.0" dependencies = [ "cc", "tree-sitter", diff --git a/Cargo.toml b/Cargo.toml index 11d1bd82..556f70d1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rcl" -version = "0.5.0" +version = "0.6.0" authors = ["Ruud van Asseldonk "] edition = "2021" license = "Apache-2.0" diff --git a/docs/installation.md b/docs/installation.md index 03039be3..e0cbab6f 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -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 RCL 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 CI. diff --git a/flake.nix b/flake.nix index 9f356cbb..170601bf 100644 --- a/flake.nix +++ b/flake.nix @@ -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; }; diff --git a/fuzz/Cargo.toml b/fuzz/Cargo.toml index 59c8cffd..c72a04a2 100644 --- a/fuzz/Cargo.toml +++ b/fuzz/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rcl-fuzz" -version = "0.5.0" +version = "0.6.0" publish = false edition = "2021" diff --git a/grammar/tree-sitter-rcl/Cargo.toml b/grammar/tree-sitter-rcl/Cargo.toml index 964f1b40..5b25b8c2 100644 --- a/grammar/tree-sitter-rcl/Cargo.toml +++ b/grammar/tree-sitter-rcl/Cargo.toml @@ -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 "] edition = "2021" license = "Apache-2.0" diff --git a/grammar/zed/extension.toml b/grammar/zed/extension.toml index 91e4485c..6bae0422 100644 --- a/grammar/zed/extension.toml +++ b/grammar/zed/extension.toml @@ -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 "] repository = "https://github.com/rcl-lang/zed-rcl" diff --git a/pyrcl/Cargo.toml b/pyrcl/Cargo.toml index e543e3e8..f91b2328 100644 --- a/pyrcl/Cargo.toml +++ b/pyrcl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pyrcl" -version = "0.5.0" +version = "0.6.0" authors = ["Ruud van Asseldonk "] edition = "2021" license = "Apache-2.0" diff --git a/wasm/Cargo.toml b/wasm/Cargo.toml index 2f6bf424..dd034fa9 100644 --- a/wasm/Cargo.toml +++ b/wasm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rcl-wasm" -version = "0.5.0" +version = "0.6.0" authors = ["Ruud van Asseldonk "] edition = "2021" license = "Apache-2.0"