diff --git a/ellie_engine/Cargo.toml b/ellie_engine/Cargo.toml index d8b400ce..3c7312ca 100644 --- a/ellie_engine/Cargo.toml +++ b/ellie_engine/Cargo.toml @@ -20,7 +20,7 @@ ellie_core = { path = "core", version = "0.7.1", default-features = false } ellie_tokenizer = { path = "tokenizer", version = "0.6.1", default-features = false, optional = true } ellie_parser = { path = "parser", version = "0.7.2", default-features = false, optional = true } ellie_bytecode = { path = "bytecode", version = "0.4.2", optional = true } -ellie_vm = { path = "vm", version = "0.5.2", optional = true } +ellie_vm = { path = "vm", version = "0.5.4", optional = true } ellie_fmt = { path = "fmt", version = "0.5.2", optional = true } ellie_renderer_utils = { path = "renderer_utils", version = "0.3.0", optional = true, default-features = false } diff --git a/ellie_engine/src/engine_constants.rs b/ellie_engine/src/engine_constants.rs index 4d72ed03..70d15fc3 100644 --- a/ellie_engine/src/engine_constants.rs +++ b/ellie_engine/src/engine_constants.rs @@ -5,7 +5,7 @@ pub static ELLIE_TOKENIZER_VERSION: &str = &"0.6.1"; pub static ELLIE_PARSER_VERSION: &str = &"0.7.2"; pub static ELLIE_BYTECODE_VERSION: &str = &"0.4.2"; pub static ELLIE_FMT_VERSION: &str = &"0.5.2"; -pub static ELLIE_VM_VERSION: &str = &"0.5.2"; -pub static ELLIE_BUILD_DATE: &str = &"2023-11-08"; -pub static ELLIE_BUILD_GIT_HASH: &str = &"14a97b8"; +pub static ELLIE_VM_VERSION: &str = &"0.5.4"; +pub static ELLIE_BUILD_DATE: &str = &"2023-11-09"; +pub static ELLIE_BUILD_GIT_HASH: &str = &"8fa378c"; pub static ELLIE_BUILD_GIT_BRANCH: &str = &"main"; diff --git a/ellie_engine/vm/Cargo.toml b/ellie_engine/vm/Cargo.toml index 8ffa616d..861eb874 100644 --- a/ellie_engine/vm/Cargo.toml +++ b/ellie_engine/vm/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "ellie_vm" description = "Ellie VM for running Ellie ByteCode" -version = "0.5.2" +version = "0.5.4" edition = "2021" license = "GPL-2.0" authors = ["Ahmetcan Aksu ", "Behemehal "] diff --git a/ellievm/Cargo.toml b/ellievm/Cargo.toml index fa5da142..61bed955 100644 --- a/ellievm/Cargo.toml +++ b/ellievm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ellievm" -version = "0.2.2" +version = "0.2.4" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html