Skip to content

Commit

Permalink
bump versions
Browse files Browse the repository at this point in the history
  • Loading branch information
yoav-lavi committed Apr 13, 2022
1 parent 8f97caf commit 1933d3a
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 11 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 3 additions & 3 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions crates/melody_cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion crates/melody_compiler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion crates/melody_compiler/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ The Melody language compiler

```toml
[dependencies]
melody_compiler = "0.14.0"
melody_compiler = "0.15.0"
```

## Usage
Expand Down
4 changes: 2 additions & 2 deletions crates/melody_wasm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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 }
2 changes: 1 addition & 1 deletion playground/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<div class="top-bar">
<div class="header-container">
<h1 class="header">Melody Playground</h1>
<div class="version">melody_compiler v0.14.0</div>
<div class="version">melody_compiler v0.15.0</div>
<div>
<a href="https://github.com/yoav-lavi/melody" class="link">GitHub</a>
<a href="https://yoav-lavi.github.io/melody" class="link">Docs</a>
Expand Down
2 changes: 1 addition & 1 deletion playground/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "playground",
"private": true,
"version": "0.14.0",
"version": "0.15.0",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
Expand Down

0 comments on commit 1933d3a

Please sign in to comment.