Skip to content

Commit ae4e149

Browse files
chore: release 0.4.1 (#24)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 6afacf7 commit ae4e149

File tree

7 files changed

+20
-12
lines changed

7 files changed

+20
-12
lines changed

CHANGELOG.md

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

3+
### [0.4.1](https://www.github.com/gengjiawen/monkey-rust/compare/v0.4.0...v0.4.1) (2021-01-05)
4+
5+
6+
### Bug Fixes
7+
8+
* add missing id in release job ([6afacf7](https://www.github.com/gengjiawen/monkey-rust/commit/6afacf7a5eb243312ae4d3d5e806342535c27a14))
9+
* update crates to right version ([43c4977](https://www.github.com/gengjiawen/monkey-rust/commit/43c4977f5189f4f42bddbfed43b661ac3dfe1f88))
10+
311
## [0.4.0](https://www.github.com/gengjiawen/monkey-rust/compare/v0.3.0...v0.4.0) (2021-01-02)
412

513

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.0"
3+
version = "0.4.1"
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.0" }
23+
monkey-parser = { path = "../parser" }

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.0"
3+
version = "0.4.1"
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.0"
3+
version = "0.4.1"
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.0" }
22+
monkey-lexer = { path = "../lexer" }
2323
serde = {version = "1.0", features = ["derive"]}
2424
serde_json = "1.0"
2525

version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.4.0
1+
0.4.1

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.0"
3+
version = "0.4.1"
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.0" }
18+
monkey-parser = { path = "../parser" }
1919

2020
wasm-bindgen = "0.2.69"
2121

0 commit comments

Comments
 (0)