Skip to content

Commit fdaf7d9

Browse files
chore: release 0.7.0 (#54)
* chore: release 0.7.0 * bump version Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Jiawen Geng <[email protected]>
1 parent 043e2cb commit fdaf7d9

File tree

8 files changed

+31
-17
lines changed

8 files changed

+31
-17
lines changed

CHANGELOG.md

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

3+
## [0.7.0](https://www.github.com/gengjiawen/monkey-rust/compare/v0.6.0...v0.7.0) (2021-07-25)
4+
5+
6+
### Features
7+
8+
* add comment support ([043e2cb](https://www.github.com/gengjiawen/monkey-rust/commit/043e2cb0db4c936a1ea932686e13528e5f7585e6))
9+
* split lexer test ([2dc9b22](https://www.github.com/gengjiawen/monkey-rust/commit/2dc9b223399257d6c24532cdb93e96917df9f9c7))
10+
* split object system ([0862556](https://www.github.com/gengjiawen/monkey-rust/commit/08625566ec404c3a6c40fafc8d32bf2cf3e0d418))
11+
12+
13+
### Bug Fixes
14+
15+
* add missing keywords ([c685622](https://www.github.com/gengjiawen/monkey-rust/commit/c6856228d042d246daf5b85b1e4b1a655ee27d8c))
16+
317
## [0.6.0](https://www.github.com/gengjiawen/monkey-rust/compare/v0.5.0...v0.6.0) (2021-07-19)
418

519

Cargo.lock

Lines changed: 5 additions & 5 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
@@ -29,7 +29,7 @@ $ cargo test
2929
Version
3030
```bash
3131
cargo install cargo-workspaces
32-
cargo workspaces version custom 0.4.0 --no-git-commit
32+
cargo workspaces version custom 0.7.0 --no-git-commit
3333
```
3434

3535
Publish

interpreter/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "monkey-interpreter"
3-
version = "0.6.0"
3+
version = "0.7.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,5 +20,5 @@ path = "main.rs"
2020

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

lexer/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-lexer"
3-
version = "0.6.0"
3+
version = "0.7.0"
44
description = "a lexer for monkey lang"
55
homepage = "https://github.com/gengjiawen/monkey-rust"
66
repository = "https://github.com/gengjiawen/monkey-rust"
@@ -23,4 +23,4 @@ serde = {version = "1.0", features = ["derive"]}
2323
serde_json = "1.0"
2424

2525
[dev-dependencies]
26-
insta = "1.7.1"
26+
insta = "1.7.1"

object/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-object"
3-
version = "0.6.0"
3+
version = "0.7.0"
44
description = "a object system for monkey lang"
55
homepage = "https://github.com/gengjiawen/monkey-rust"
66
repository = "https://github.com/gengjiawen/monkey-rust"
@@ -15,7 +15,7 @@ name = "object"
1515
path= "object.rs"
1616

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

2020
[dev-dependencies]
2121
insta = "1.7.1"

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.6.0"
3+
version = "0.7.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.6.0" }
22+
monkey-lexer = { path = "../lexer", version = "0.7.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.6.0"
3+
version = "0.7.0"
44
description = "monkey lang parser wasm version"
55
homepage = "https://github.com/gengjiawen/monkey-rust"
66
repository = "https://github.com/gengjiawen/monkey-rust"
@@ -16,7 +16,7 @@ crate-type = ["cdylib", "rlib"]
1616
default = ["console_error_panic_hook"]
1717

1818
[dependencies]
19-
monkey-parser = { path = "../parser", version = "0.6.0" }
19+
monkey-parser = { path = "../parser", version = "0.7.0" }
2020

2121
wasm-bindgen = "0.2.74"
2222

0 commit comments

Comments
 (0)