Skip to content

Commit

Permalink
tag: v1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
arthurfiorette committed Feb 7, 2022
1 parent 00cf48f commit 83006af
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Expand Up @@ -3,7 +3,7 @@ members = ["brainease_lexer", "brainease_runtime"]

[package]
name = "brainease"
version = "1.0.0"
version = "1.0.1"
edition = "2021"
description = "A brainf*ck-style programming language, but readable"
documentation = "https://arthurfiorette.github.io/brainease"
Expand All @@ -13,8 +13,8 @@ license = "MIT"
readme = "./README.md"

[dependencies]
brainease_runtime = { path = "brainease_runtime", version = "1.0.0" }
brainease_lexer = { path = "brainease_lexer", version = "1.0.0" }
brainease_runtime = { path = "brainease_runtime", version = "1.0.1" }
brainease_lexer = { path = "brainease_lexer", version = "1.0.1" }

clap = { version = "^3.0", features = ["derive"] }
env_logger = "^0.9"
Expand Down
2 changes: 1 addition & 1 deletion brainease_lexer/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "brainease_lexer"
version = "1.0.0"
version = "1.0.1"
edition = "2021"
description = "A brainf*ck-style programming language, but readable"
documentation = "https://arthurfiorette.github.io/brainease"
Expand Down
4 changes: 2 additions & 2 deletions brainease_runtime/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "brainease_runtime"
version = "1.0.0"
version = "1.0.1"
edition = "2021"
description = "A brainf*ck-style programming language, but readable"
documentation = "https://arthurfiorette.github.io/brainease"
Expand All @@ -10,5 +10,5 @@ license = "MIT"
readme = "./README.md"

[dependencies]
brainease_lexer = { path = "../brainease_lexer", version = "1.0.0" }
brainease_lexer = { path = "../brainease_lexer", version = "1.0.1" }
log = "^0.4"

0 comments on commit 83006af

Please sign in to comment.