Skip to content

Commit

Permalink
tag: bump all brainease crates
Browse files Browse the repository at this point in the history
  • Loading branch information
arthurfiorette committed Mar 1, 2022
1 parent 1ed28c8 commit a28f12e
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 21 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.

3 changes: 3 additions & 0 deletions Makefile
Expand Up @@ -2,6 +2,9 @@ THIS_FILE := $(lastword $(MAKEFILE_LIST))

all:

test-watch:
cargo watch -x "test --all"

changelog:
@git-cliff -o CHANGELOG.md

Expand Down
31 changes: 16 additions & 15 deletions README.md
Expand Up @@ -31,30 +31,31 @@ $ cargo install brainease
# brain run -f examples/hello.brain

save 'H' at *1
print *1
save 'e' at *2
print *2
save 'l' at *3
print *3
print *3
save 'o' at *4
print *4
save ',' at *5
print *5

save ' ' at *6
print *6

save 'W' at *7
print *7
print *4 # o
save 'r' at *8
print *8
print *3 # l
save 'd' at *9
print *9
save '!' at *10
print *10

print *1 # H
print *2 # e
print *3 # l
print *3 # l
print *4 # o
print *5 # ,

print *6 # ' '

print *7 # W
print *4 # o
print *8 # r
print *3 # l
print *9 # d
print *10 # !

#> Hello, World!
```
Expand Down
2 changes: 1 addition & 1 deletion brainease_lexer/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "brainease_lexer"
version = "1.0.3"
version = "1.0.4"
edition = "2021"
description = "A brainf*ck-style programming language, but readable"
documentation = "https://arthurfiorette.github.io/brainease"
Expand Down
2 changes: 1 addition & 1 deletion brainease_runtime/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "brainease_runtime"
version = "1.0.3"
version = "1.0.4"
edition = "2021"
description = "A brainf*ck-style programming language, but readable"
documentation = "https://arthurfiorette.github.io/brainease"
Expand Down
2 changes: 1 addition & 1 deletion brainease_transpiler/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "brainease_transpiler"
version = "1.0.3"
version = "1.0.4"
edition = "2021"
description = "A brainf*ck-style programming language, but readable"
documentation = "https://arthurfiorette.github.io/brainease"
Expand Down

0 comments on commit a28f12e

Please sign in to comment.