Skip to content

Commit 9c5b8e4

Browse files
chore: release 0.5.0 (#28)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Jiawen Geng <[email protected]>
1 parent c543942 commit 9c5b8e4

File tree

6 files changed

+25
-11
lines changed

6 files changed

+25
-11
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.5.0](https://www.github.com/gengjiawen/monkey-rust/compare/v0.4.2...v0.5.0) (2021-01-19)
4+
5+
6+
### Features
7+
8+
* add ast-explorer ([#29](https://www.github.com/gengjiawen/monkey-rust/issues/29)) ([cc58d93](https://www.github.com/gengjiawen/monkey-rust/commit/cc58d939d04c509a53f38bf112bb97fe7ccef323))
9+
* add fish to gitpods ([65587f7](https://www.github.com/gengjiawen/monkey-rust/commit/65587f783911c2bd81bf37152b187805f403449f))
10+
11+
12+
### Bug Fixes
13+
14+
* add versions back ([197c89e](https://www.github.com/gengjiawen/monkey-rust/commit/197c89e644290d806e7d916889485ed9751c8478))
15+
* binary expr span issues. ([c543942](https://www.github.com/gengjiawen/monkey-rust/commit/c5439420cd49417bf23dbec2debd872279463498))
16+
317
### [0.4.2](https://www.github.com/gengjiawen/monkey-rust/compare/v0.4.1...v0.4.2) (2021-01-07)
418

519

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.

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.4.1"
3+
version = "0.5.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.8", features = ["macros"] }
23-
monkey-parser = { path = "../parser", version = "0.4.1" }
23+
monkey-parser = { path = "../parser", version = "=0.5.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.4.1"
3+
version = "0.5.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.4.1"
3+
version = "0.5.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.4.1" }
22+
monkey-lexer = { path = "../lexer", version = "0.5.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.4.2"
3+
version = "0.5.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.4.1" }
18+
monkey-parser = { path = "../parser", version = "0.5.0" }
1919

2020
wasm-bindgen = "0.2.69"
2121

0 commit comments

Comments
 (0)