Skip to content

Commit

Permalink
Release 0.0.4-dev
Browse files Browse the repository at this point in the history
  • Loading branch information
juanvillacortac committed Dec 9, 2022
1 parent e0f664f commit bab7b82
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions core/compiler/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pk_compiler"
version = "0.0.3-dev.0"
version = "0.0.4-dev"
edition = "2021"
repository = "https://github.com/juanvillacortac/palacinke-lang"
description = "The Palacinke lang bytecode compiler"
Expand All @@ -11,4 +11,4 @@ authors = ["[email protected]"]

[dependencies]
bytecoding = "0.1.0"
pk_parser = { version = "0.0.3-dev.0", path = "../parser" }
pk_parser = { version = "0.0.4-dev", path = "../parser" }
2 changes: 1 addition & 1 deletion core/lexer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pk_lexer"
version = "0.0.3-dev.0"
version = "0.0.4-dev"
edition = "2021"
repository = "https://github.com/juanvillacortac/palacinke-lang"
description = "The Palacinke lang lexer"
Expand Down
4 changes: 2 additions & 2 deletions core/parser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pk_parser"
version = "0.0.3-dev.0"
version = "0.0.4-dev"
edition = "2021"
repository = "https://github.com/juanvillacortac/palacinke-lang"
description = "The Palacinke lang parser"
Expand All @@ -10,4 +10,4 @@ authors = ["[email protected]"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
pk_lexer = { version = "0.0.3-dev.0", path = "../lexer" }
pk_lexer = { version = "0.0.4-dev", path = "../lexer" }
4 changes: 2 additions & 2 deletions core/vm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pk_vm"
version = "0.0.3-dev.0"
version = "0.0.4-dev"
edition = "2021"
repository = "https://github.com/juanvillacortac/palacinke-lang"
description = "The Palacinke lang bytecode virtual machine"
Expand All @@ -10,4 +10,4 @@ authors = ["[email protected]"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
pk_compiler = { version = "0.0.3-dev.0", path = "../compiler" }
pk_compiler = { version = "0.0.4-dev", path = "../compiler" }
8 changes: 4 additions & 4 deletions palacinke/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "palacinke"
version = "0.0.3-dev.0"
version = "0.0.4-dev"
edition = "2021"
repository = "https://github.com/juanvillacortac/palacinke-lang"
description = "Palacinke: the useless scripting lang"
Expand All @@ -16,8 +16,8 @@ path = "src/bin/palacinke.rs"
[dependencies]
clap = { version = "4.0.26", features = ["derive"] }
colored = "2.0.0"
pk_compiler = { version = "0.0.3-dev.0", path = "../core/compiler" }
pk_parser = { version = "0.0.3-dev.0", path = "../core/parser" }
pk_vm = { version = "0.0.3-dev.0", path = "../core/vm" }
pk_compiler = { version = "0.0.4-dev", path = "../core/compiler" }
pk_parser = { version = "0.0.4-dev", path = "../core/parser" }
pk_vm = { version = "0.0.4-dev", path = "../core/vm" }
platform-dirs = "0.3.0"
rustyline = "10.0.0"

0 comments on commit bab7b82

Please sign in to comment.