Skip to content

Commit

Permalink
Bump versions
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmtcn123 committed Nov 8, 2023
1 parent e8edc6e commit f646b62
Show file tree
Hide file tree
Showing 9 changed files with 18 additions and 18 deletions.
6 changes: 3 additions & 3 deletions ellie_engine/Cargo.toml
Expand Up @@ -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 }
Expand Down
4 changes: 2 additions & 2 deletions ellie_engine/bytecode/Cargo.toml
@@ -1,15 +1,15 @@
[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 <ahmetcanaksu@behemehal.org>", "Behemehal <info@behemehal.org>"]
license = "GPL-2.0"
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"
Expand Down
2 changes: 1 addition & 1 deletion 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 <ahmetcanaksu@behemehal.org>",
"Behemehal <info@behemehal.org>",
Expand Down
4 changes: 2 additions & 2 deletions ellie_engine/fmt/Cargo.toml
Expand Up @@ -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"]
Expand Down
4 changes: 2 additions & 2 deletions ellie_engine/parser/Cargo.toml
Expand Up @@ -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 }

Expand Down
2 changes: 1 addition & 1 deletion ellie_engine/renderer_utils/Cargo.toml
Expand Up @@ -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 }
Expand Down
8 changes: 4 additions & 4 deletions 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";
4 changes: 2 additions & 2 deletions ellie_engine/tokenizer/Cargo.toml
@@ -1,15 +1,15 @@
[package]
name = "ellie_tokenizer"
description = "Tokenizer for ellie language"
version = "0.6.1"
version = "0.6.2"
authors = ["Ahmetcan Aksu <ahmetcanaksu@behemehal.org>", "Behemehal <info@behemehal.org>"]
edition = "2021"
license = "GPL-2.0"
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"] }
Expand Down
2 changes: 1 addition & 1 deletion ellie_engine/vm/Cargo.toml
Expand Up @@ -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]
Expand Down

0 comments on commit f646b62

Please sign in to comment.