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 cc1a8e6 commit 45392ea
Show file tree
Hide file tree
Showing 10 changed files with 21 additions and 12 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## [v0.16.0] - 2022-04-11

### Features

- Add support for testing matches in CLI

## [v0.15.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.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ The Melody file extensions are `.mdy` and `.melody`
## Packages
- [NodeJS](https://www.npmjs.com/package/melodyc)
- [Deno](https://deno.land/x/melody@v0.15.0)
- [Deno](https://deno.land/x/melody@v0.16.0)
## Integrations
Expand Down
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.15.1"
version = "0.16.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.15.0", path = "../melody_compiler" }
melody_compiler = { version = "0.16.0", path = "../melody_compiler" }
atty = "0.2"
exitcode = "1.1.2"
clap_generate = "3.0.3"
Expand Down
3 changes: 3 additions & 0 deletions crates/melody_cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ OPTIONS:
-r, --repl
Start the Melody REPL

-t, --test <TEST>
Test the compiled regex against a string

-V, --version
Print version information
```
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.15.0"
version = "0.16.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.15.0"
melody_compiler = "0.16.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.15.0"
version = "0.16.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.15.0", path = "../melody_compiler", default-features = false }
melody_compiler = { version = "0.16.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.15.0</div>
<div class="version">melody_compiler v0.16.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.15.0",
"version": "0.16.0",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
Expand Down

0 comments on commit 45392ea

Please sign in to comment.