Skip to content

Commit 110f945

Browse files
chore: release 0.6.0 (#40)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Jiawen Geng <[email protected]> Co-authored-by: Jiawen Geng <[email protected]>
1 parent d2dfe26 commit 110f945

File tree

7 files changed

+28
-12
lines changed

7 files changed

+28
-12
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# Changelog
22

3+
## [0.6.0](https://www.github.com/gengjiawen/monkey-rust/compare/v0.5.0...v0.6.0) (2021-07-19)
4+
5+
6+
### Features
7+
8+
* add test case to astsexplorer ([c873b23](https://www.github.com/gengjiawen/monkey-rust/commit/c873b23f0f1e6960ecfd766e17bf78f784e4ca5e))
9+
* put cargo-workspace into docker ([053bb27](https://www.github.com/gengjiawen/monkey-rust/commit/053bb276c0e32ccaed1a7024bbddf9006da705e1))
10+
* refactor function params to IDENTIFIER type. ([89faebe](https://www.github.com/gengjiawen/monkey-rust/commit/89faebeff7e7e1a484b42f65daf18cae05d2ba34))
11+
* refactor token output ([ae2084e](https://www.github.com/gengjiawen/monkey-rust/commit/ae2084e55fbca08e5b3667c4e947641744de0f1b))
12+
13+
14+
### Bug Fixes
15+
16+
* change default release name ([ecd5e54](https://www.github.com/gengjiawen/monkey-rust/commit/ecd5e540119eb641b60ab5c6189241627d188ac7))
17+
* if span issue ([0236a30](https://www.github.com/gengjiawen/monkey-rust/commit/0236a303dbd8ccaecef39d5f4c24681841aa794d))
18+
319
## [0.5.0](https://www.github.com/gengjiawen/monkey-rust/compare/v0.4.2...v0.5.0) (2021-01-19)
420

521

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ $ cargo test
2727
Version
2828
```bash
2929
cargo install cargo-workspaces
30-
cargo workspaces version custom --exact 0.4.0 --no-git-commit
30+
cargo workspaces version custom 0.4.0 --no-git-commit
3131
```
3232

3333
Publish

interpreter/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "monkey-interpreter"
3-
version = "0.5.0"
3+
version = "0.6.0"
44
description = "a evaluator for monkey lang"
55
homepage = "https://github.com/gengjiawen/monkey-rust"
66
repository = "https://github.com/gengjiawen/monkey-rust"
@@ -20,4 +20,4 @@ path = "main.rs"
2020

2121
[dependencies]
2222
phf = { version = "0.9", features = ["macros"] }
23-
monkey-parser = { path = "../parser", version = "=0.5.0" }
23+
monkey-parser = { path = "../parser", version = "0.6.0" }

lexer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "monkey-lexer"
3-
version = "0.5.0"
3+
version = "0.6.0"
44
description = "a lexer for monkey lang"
55
homepage = "https://github.com/gengjiawen/monkey-rust"
66
repository = "https://github.com/gengjiawen/monkey-rust"

parser/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "monkey-parser"
3-
version = "0.5.0"
3+
version = "0.6.0"
44
description = "a parser for monkey lang"
55
homepage = "https://github.com/gengjiawen/monkey-rust"
66
repository = "https://github.com/gengjiawen/monkey-rust"
@@ -19,7 +19,7 @@ name = "monkey-parser"
1919
path = "main.rs"
2020

2121
[dependencies]
22-
monkey-lexer = { path = "../lexer", version = "0.5.0" }
22+
monkey-lexer = { path = "../lexer", version = "0.6.0" }
2323
serde = {version = "1.0", features = ["derive"]}
2424
serde_json = "1.0"
2525

wasm/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "monkey-wasm"
3-
version = "0.5.0"
3+
version = "0.6.0"
44
description = "monkey lang parser wasm version"
55
homepage = "https://github.com/gengjiawen/monkey-rust"
66
repository = "https://github.com/gengjiawen/monkey-rust"
@@ -15,7 +15,7 @@ crate-type = ["cdylib", "rlib"]
1515
default = ["console_error_panic_hook"]
1616

1717
[dependencies]
18-
monkey-parser = { path = "../parser", version = "0.5.0" }
18+
monkey-parser = { path = "../parser", version = "0.6.0" }
1919

2020
wasm-bindgen = "0.2.74"
2121

0 commit comments

Comments
 (0)