diff --git a/CHANGELOG.md b/CHANGELOG.md index c8251111..dc36a80d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [v0.15.0] - 2022-04-11 + +### Features + +- Add shell completions for CLI +- Add Deno support + ## [v0.14.0] - 2022-04-11 ### Features diff --git a/Cargo.lock b/Cargo.lock index 432017b1..446361dc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -537,7 +537,7 @@ checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d" [[package]] name = "melody_cli" -version = "0.14.3" +version = "0.15.0" dependencies = [ "anyhow", "assert_cmd", @@ -555,7 +555,7 @@ dependencies = [ [[package]] name = "melody_compiler" -version = "0.14.0" +version = "0.15.0" dependencies = [ "anyhow", "arbitrary", @@ -568,7 +568,7 @@ dependencies = [ [[package]] name = "melody_wasm" -version = "0.14.0" +version = "0.15.0" dependencies = [ "melody_compiler", "wasm-bindgen", diff --git a/crates/melody_cli/Cargo.toml b/crates/melody_cli/Cargo.toml index 8122756d..7d524b32 100644 --- a/crates/melody_cli/Cargo.toml +++ b/crates/melody_cli/Cargo.toml @@ -4,7 +4,7 @@ description = "A CLI wrapping the Melody language compiler" homepage = "https://github.com/yoav-lavi/melody" repository = "https://github.com/yoav-lavi/melody" readme = "README.md" -version = "0.14.3" +version = "0.15.0" edition = "2021" rust-version = "1.58.0" license = "MIT" @@ -16,7 +16,7 @@ clap = { version = "3.1.6", features = ["derive"] } colored = "2.0.0" thiserror = "1.0" anyhow = "1.0" -melody_compiler = { version = "0.14.0", path = "../melody_compiler" } +melody_compiler = { version = "0.15.0", path = "../melody_compiler" } atty = "0.2" exitcode = "1.1.2" clap_generate = "3.0.3" diff --git a/crates/melody_compiler/Cargo.toml b/crates/melody_compiler/Cargo.toml index 04d2c414..ea281845 100644 --- a/crates/melody_compiler/Cargo.toml +++ b/crates/melody_compiler/Cargo.toml @@ -4,7 +4,7 @@ description = "The Melody language compiler" homepage = "https://github.com/yoav-lavi/melody" repository = "https://github.com/yoav-lavi/melody" readme = "README.md" -version = "0.14.0" +version = "0.15.0" edition = "2021" rust-version = "1.58.0" license = "MIT" diff --git a/crates/melody_compiler/README.md b/crates/melody_compiler/README.md index bc67a601..f4fce7fe 100644 --- a/crates/melody_compiler/README.md +++ b/crates/melody_compiler/README.md @@ -10,7 +10,7 @@ The Melody language compiler ```toml [dependencies] -melody_compiler = "0.14.0" +melody_compiler = "0.15.0" ``` ## Usage diff --git a/crates/melody_wasm/Cargo.toml b/crates/melody_wasm/Cargo.toml index baac1767..c99a80c7 100644 --- a/crates/melody_wasm/Cargo.toml +++ b/crates/melody_wasm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "melody_wasm" -version = "0.14.0" +version = "0.15.0" edition = "2021" rust-version = "1.58.0" description = "WASM bindings for the Melody language compiler" @@ -15,4 +15,4 @@ crate-type = ["cdylib"] [dependencies] wasm-bindgen = "0.2.79" -melody_compiler = { version = "0.14.0", path = "../melody_compiler", default-features = false } +melody_compiler = { version = "0.15.0", path = "../melody_compiler", default-features = false } diff --git a/playground/index.html b/playground/index.html index 6439e57d..410a41be 100644 --- a/playground/index.html +++ b/playground/index.html @@ -17,7 +17,7 @@