Skip to content

Commit

Permalink
Update version
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmtcn123 committed Nov 8, 2023
1 parent 943ae4d commit e8edc6e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion ellie_engine/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }

Expand Down
6 changes: 3 additions & 3 deletions ellie_engine/src/engine_constants.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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";
2 changes: 1 addition & 1 deletion ellie_engine/vm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <ahmetcanaksu@behemehal.org>", "Behemehal <info@behemehal.org>"]
Expand Down
2 changes: 1 addition & 1 deletion ellievm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit e8edc6e

Please sign in to comment.