Skip to content

Commit

Permalink
Bump version to 2.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
01mf02 committed Nov 27, 2024
1 parent 07f4b81 commit 63513e5
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 17 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion jaq-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "jaq-core"
version = "2.0.0-epsilon"
version = "2.0.0"
authors = ["Michael Färber <michael.faerber@gedenkt.at>"]
edition = "2021"
license = "MIT"
Expand Down
6 changes: 3 additions & 3 deletions jaq-json/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "jaq-json"
version = "1.0.0-epsilon"
version = "1.0.0"
authors = ["Michael Färber <michael.faerber@gedenkt.at>"]
edition = "2021"
license = "MIT"
Expand All @@ -16,8 +16,8 @@ default = ["parse"]
parse = ["hifijson"]

[dependencies]
jaq-core = { version = "2.0.0-epsilon", path = "../jaq-core" }
jaq-std = { version = "2.0.0-epsilon", path = "../jaq-std" }
jaq-core = { version = "2.0.0", path = "../jaq-core" }
jaq-std = { version = "2.0.0", path = "../jaq-std" }

foldhash = { version = "0.1", default-features = false }
hifijson = { version = "0.2.0", default-features = false, features = ["alloc"], optional = true }
Expand Down
6 changes: 3 additions & 3 deletions jaq-play/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ wasm-opt = false
crate-type = ["cdylib", "rlib"]

[dependencies]
jaq-core = { version = "2.0.0-epsilon", path = "../jaq-core" }
jaq-std = { version = "2.0.0-epsilon", path = "../jaq-std" }
jaq-json = { version = "1.0.0-epsilon", path = "../jaq-json" }
jaq-core = { path = "../jaq-core" }
jaq-std = { path = "../jaq-std" }
jaq-json = { path = "../jaq-json" }

aho-corasick = "1.1.2"
codesnake = { version = "0.2" }
Expand Down
4 changes: 2 additions & 2 deletions jaq-std/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "jaq-std"
version = "2.0.0-epsilon"
version = "2.0.0"
authors = ["Michael Färber <michael.faerber@gedenkt.at>"]
edition = "2021"
license = "MIT"
Expand All @@ -19,7 +19,7 @@ math = ["libm"]
time = ["chrono"]

[dependencies]
jaq-core = { version = "2.0.0-epsilon", path = "../jaq-core" }
jaq-core = { version = "2.0.0", path = "../jaq-core" }

hifijson = { version = "0.2.0", optional = true }
chrono = { version = "0.4.38", default-features = false, features = ["alloc"], optional = true }
Expand Down
8 changes: 4 additions & 4 deletions jaq/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "jaq"
version = "2.0.0-epsilon"
version = "2.0.0"
authors = ["Michael Färber <michael.faerber@gedenkt.at>"]
edition = "2021"
license = "MIT"
Expand All @@ -15,9 +15,9 @@ rust-version = "1.65"
default = ["mimalloc"]

[dependencies]
jaq-core = { version = "2.0.0-epsilon", path = "../jaq-core" }
jaq-std = { version = "2.0.0-epsilon", path = "../jaq-std" }
jaq-json = { version = "1.0.0-epsilon", path = "../jaq-json" }
jaq-core = { version = "2.0.0", path = "../jaq-core" }
jaq-std = { version = "2.0.0", path = "../jaq-std" }
jaq-json = { version = "1.0.0", path = "../jaq-json" }

atty = "0.2"
codesnake = { version = "0.2" }
Expand Down

0 comments on commit 63513e5

Please sign in to comment.