diff --git a/ellie_engine/Cargo.toml b/ellie_engine/Cargo.toml index 3c7312ca..c7d55944 100644 --- a/ellie_engine/Cargo.toml +++ b/ellie_engine/Cargo.toml @@ -15,11 +15,11 @@ homepage = "https://www.ellie-lang.org" serde = { version = "1.0", features = ["derive"], optional = true } serde_json = { version = "1.0", default-features = false, features = ["alloc"], optional = true } path-absolutize = { version = "3.0.10", optional = true } -ellie_core = { path = "core", version = "0.7.1", default-features = false } +ellie_core = { path = "core", version = "0.7.2", default-features = false } #ellie_assist = { path = "EllieAssist", version = "*", optional = true } -ellie_tokenizer = { path = "tokenizer", version = "0.6.1", default-features = false, optional = true } +ellie_tokenizer = { path = "tokenizer", version = "0.6.2", 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_bytecode = { path = "bytecode", version = "0.4.3", 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/bytecode/Cargo.toml b/ellie_engine/bytecode/Cargo.toml index afa4491b..a3443ffe 100644 --- a/ellie_engine/bytecode/Cargo.toml +++ b/ellie_engine/bytecode/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "ellie_bytecode" description = "Bytecode assembler/encoder/decoder for ellie language" -version = "0.4.2" +version = "0.4.3" edition = "2021" authors = ["Ahmetcan Aksu ", "Behemehal "] license = "GPL-2.0" @@ -9,7 +9,7 @@ repository = "https://github.com/behemehal/Ellie-Language" homepage = "https://www.ellie-lang.org" [dependencies] -ellie_core = { path = "../core", version = "0.7.1" } +ellie_core = { path = "../core", version = "0.7.2" } ellie_parser = { path = "../parser", version = "0.7.2" } enum-as-inner = "0.6.0" lazy_static = "1.4.0" diff --git a/ellie_engine/core/Cargo.toml b/ellie_engine/core/Cargo.toml index 1596c418..fa1f7fa8 100644 --- a/ellie_engine/core/Cargo.toml +++ b/ellie_engine/core/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "ellie_core" description = "Core modules for ellie" -version = "0.7.1" +version = "0.7.2" authors = [ "Ahmetcan Aksu ", "Behemehal ", diff --git a/ellie_engine/fmt/Cargo.toml b/ellie_engine/fmt/Cargo.toml index 32d9ec8a..16b7cf23 100644 --- a/ellie_engine/fmt/Cargo.toml +++ b/ellie_engine/fmt/Cargo.toml @@ -12,8 +12,8 @@ homepage = "https://www.ellie-lang.org" lazy_static = "1.4.0" serde = { version = "1.0", features = ["derive"] } serde_json = { version = "1.0", default-features = false, features = ["alloc"] } -ellie_tokenizer = { path = "../tokenizer", version = "0.6.1" } -ellie_core = { path = "../core", version = "0.7.1" } +ellie_tokenizer = { path = "../tokenizer", version = "0.6.2" } +ellie_core = { path = "../core", version = "0.7.2" } [features] default = ["std"] diff --git a/ellie_engine/parser/Cargo.toml b/ellie_engine/parser/Cargo.toml index cf85a46e..19d9c754 100644 --- a/ellie_engine/parser/Cargo.toml +++ b/ellie_engine/parser/Cargo.toml @@ -12,8 +12,8 @@ homepage = "https://www.ellie-lang.org" lazy_static = "1.4.0" serde = { version = "1.0", features = ["derive"] } serde_json = { version = "1.0", default-features = false, features = ["alloc"] } -ellie_core = { path = "../core", version = "0.7.1" } -ellie_tokenizer = { path = "../tokenizer", version = "0.6.1", default-features = false } +ellie_core = { path = "../core", version = "0.7.2" } +ellie_tokenizer = { path = "../tokenizer", version = "0.6.2", default-features = false } enum-as-inner = "0.6.0" ellie_standard_rules = { path = "./standard_rules", version = "0.1.0", optional = true } diff --git a/ellie_engine/renderer_utils/Cargo.toml b/ellie_engine/renderer_utils/Cargo.toml index 090ba62b..69ce936e 100644 --- a/ellie_engine/renderer_utils/Cargo.toml +++ b/ellie_engine/renderer_utils/Cargo.toml @@ -15,7 +15,7 @@ homepage = "https://www.ellie-lang.org" lazy_static = { version = "1.4.0", optional = true } clap = { version = "3.1.1", optional = true } clap_complete = { version = "3.0.0", optional = true } -ellie_core = { path = "../core", version = "0.7.1" } +ellie_core = { path = "../core", version = "0.7.2" } serde = { version = "1.0", features = ["derive"], optional = true } serde_json = { version = "1.0", default-features = false, optional = true } path-absolutize = { version = "3.0.10", optional = true } diff --git a/ellie_engine/src/engine_constants.rs b/ellie_engine/src/engine_constants.rs index 70d15fc3..f0181164 100644 --- a/ellie_engine/src/engine_constants.rs +++ b/ellie_engine/src/engine_constants.rs @@ -1,11 +1,11 @@ pub static ELLIE_ENGINE_VERSION: &str = &"1.4.13-alpha"; pub static ELLIE_ENGINE_VERSION_NAME: &str = &"Seftali"; -pub static ELLIE_CORE_VERSION: &str = &"0.7.1"; -pub static ELLIE_TOKENIZER_VERSION: &str = &"0.6.1"; +pub static ELLIE_CORE_VERSION: &str = &"0.7.2"; +pub static ELLIE_TOKENIZER_VERSION: &str = &"0.6.2"; pub static ELLIE_PARSER_VERSION: &str = &"0.7.2"; -pub static ELLIE_BYTECODE_VERSION: &str = &"0.4.2"; +pub static ELLIE_BYTECODE_VERSION: &str = &"0.4.3"; pub static ELLIE_FMT_VERSION: &str = &"0.5.2"; 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_HASH: &str = &"d9dce96"; pub static ELLIE_BUILD_GIT_BRANCH: &str = &"main"; diff --git a/ellie_engine/tokenizer/Cargo.toml b/ellie_engine/tokenizer/Cargo.toml index 1fd5e47a..6e3894a9 100644 --- a/ellie_engine/tokenizer/Cargo.toml +++ b/ellie_engine/tokenizer/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "ellie_tokenizer" description = "Tokenizer for ellie language" -version = "0.6.1" +version = "0.6.2" authors = ["Ahmetcan Aksu ", "Behemehal "] edition = "2021" license = "GPL-2.0" @@ -9,7 +9,7 @@ repository = "https://github.com/behemehal/Ellie-Language" homepage = "https://www.ellie-lang.org" [dependencies] -ellie_core = { path = "../core", version = "0.7.1", features = ["compiler_utils"] } +ellie_core = { path = "../core", version = "0.7.2", features = ["compiler_utils"] } enum-as-inner = "0.6.0" serde = { version = "1.0", features = ["derive"] } serde_json = { version = "1.0", default-features = false, features = ["alloc"] } diff --git a/ellie_engine/vm/Cargo.toml b/ellie_engine/vm/Cargo.toml index 861eb874..79e02ff2 100644 --- a/ellie_engine/vm/Cargo.toml +++ b/ellie_engine/vm/Cargo.toml @@ -9,7 +9,7 @@ repository = "https://github.com/behemehal/Ellie-Language" homepage = "https://www.ellie-lang.org" [dependencies] -ellie_core = { path = "../core", version = "0.7.1", default-features = false } +ellie_core = { path = "../core", version = "0.7.2", default-features = false } mimalloc = { version="0.1.34", optional = true } [features]