Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

### [0.10.2](https://www.github.com/gengjiawen/monkey-rust/compare/v0.10.1...v0.10.2) (2025-10-24)


### Bug Fixes

* playground wasm version ([e3fbb64](https://www.github.com/gengjiawen/monkey-rust/commit/e3fbb64f96581553d05a44c422c04faa2746fbba))

### [0.10.1](https://www.github.com/gengjiawen/monkey-rust/compare/v0.10.0...v0.10.1) (2025-10-24)


Expand Down
12 changes: 6 additions & 6 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 compiler/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "monkey-compiler"
version = "0.10.1"
version = "0.10.2"
description = "a compiler for monkeylang"
homepage = "https://github.com/gengjiawen/monkey-rust"
repository = "https://github.com/gengjiawen/monkey-rust"
Expand Down
2 changes: 1 addition & 1 deletion interpreter/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "monkey-interpreter"
version = "0.10.1"
version = "0.10.2"
description = "an interpreter for monkeylang"
homepage = "https://github.com/gengjiawen/monkey-rust"
repository = "https://github.com/gengjiawen/monkey-rust"
Expand Down
2 changes: 1 addition & 1 deletion lexer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "monkey-lexer"
version = "0.10.1"
version = "0.10.2"
description = "a lexer for monkey lang"
homepage = "https://github.com/gengjiawen/monkey-rust"
repository = "https://github.com/gengjiawen/monkey-rust"
Expand Down
2 changes: 1 addition & 1 deletion object/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "monkey-object"
version = "0.10.1"
version = "0.10.2"
description = "a object system for monkey lang"
homepage = "https://github.com/gengjiawen/monkey-rust"
repository = "https://github.com/gengjiawen/monkey-rust"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "monkey-rust",
"version": "0.10.1",
"version": "0.10.2",
"description": "![Rust](https://github.com/gengjiawen/monkey-rust/workflows/Rust/badge.svg) [![Gitpod ready-to-code](https://img.shields.io/badge/Gitpod-ready--to--code-blue?logo=gitpod)](https://gitpod.io/#https://github.com/gengjiawen/monkey_rust)",
"main": "index.js",
"directories": {
Expand Down
2 changes: 1 addition & 1 deletion parser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "monkey-parser"
version = "0.10.1"
version = "0.10.2"
description = "a parser for monkey lang"
homepage = "https://github.com/gengjiawen/monkey-rust"
repository = "https://github.com/gengjiawen/monkey-rust"
Expand Down
2 changes: 1 addition & 1 deletion wasm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "monkey-wasm"
version = "0.10.1"
version = "0.10.2"
description = "monkey lang parser wasm version"
homepage = "https://github.com/gengjiawen/monkey-rust"
repository = "https://github.com/gengjiawen/monkey-rust"
Expand Down