Skip to content

Commit e8d38fd

Browse files
committed
Bump version to 2.0.0-epsilon.
1 parent 5af03fb commit e8d38fd

File tree

6 files changed

+17
-17
lines changed

6 files changed

+17
-17
lines changed

Cargo.lock

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

jaq-core/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "jaq-core"
3-
version = "2.0.0-delta"
3+
version = "2.0.0-epsilon"
44
authors = ["Michael Färber <[email protected]>"]
55
edition = "2021"
66
license = "MIT"

jaq-json/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "jaq-json"
3-
version = "1.0.0-delta"
3+
version = "1.0.0-epsilon"
44
authors = ["Michael Färber <[email protected]>"]
55
edition = "2021"
66
license = "MIT"
@@ -16,8 +16,8 @@ default = ["parse"]
1616
parse = ["hifijson"]
1717

1818
[dependencies]
19-
jaq-core = { version = "2.0.0-delta", path = "../jaq-core" }
20-
jaq-std = { version = "2.0.0-delta", path = "../jaq-std" }
19+
jaq-core = { version = "2.0.0-epsilon", path = "../jaq-core" }
20+
jaq-std = { version = "2.0.0-epsilon", path = "../jaq-std" }
2121

2222
ahash = "0.8.6"
2323
hifijson = { version = "0.2.0", optional = true }

jaq-play/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ wasm-opt = false
1616
crate-type = ["cdylib", "rlib"]
1717

1818
[dependencies]
19-
jaq-core = { version = "2.0.0-delta", path = "../jaq-core" }
20-
jaq-std = { version = "2.0.0-delta", path = "../jaq-std" }
21-
jaq-json = { version = "1.0.0-delta", path = "../jaq-json" }
19+
jaq-core = { version = "2.0.0-epsilon", path = "../jaq-core" }
20+
jaq-std = { version = "2.0.0-epsilon", path = "../jaq-std" }
21+
jaq-json = { version = "1.0.0-epsilon", path = "../jaq-json" }
2222

2323
aho-corasick = "1.1.2"
2424
codesnake = { version = "0.2" }

jaq-std/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "jaq-std"
3-
version = "2.0.0-delta"
3+
version = "2.0.0-epsilon"
44
authors = ["Michael Färber <[email protected]>"]
55
edition = "2021"
66
license = "MIT"
@@ -19,7 +19,7 @@ math = ["libm"]
1919
time = ["chrono"]
2020

2121
[dependencies]
22-
jaq-core = { version = "2.0.0-delta", path = "../jaq-core" }
22+
jaq-core = { version = "2.0.0-epsilon", path = "../jaq-core" }
2323

2424
hifijson = { version = "0.2.0", optional = true }
2525
chrono = { version = "0.4.38", default-features = false, features = ["alloc"], optional = true }

jaq/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "jaq"
3-
version = "2.0.0-delta"
3+
version = "2.0.0-epsilon"
44
authors = ["Michael Färber <[email protected]>"]
55
edition = "2021"
66
license = "MIT"
@@ -15,9 +15,9 @@ rust-version = "1.65"
1515
default = ["mimalloc"]
1616

1717
[dependencies]
18-
jaq-core = { version = "2.0.0-delta", path = "../jaq-core" }
19-
jaq-std = { version = "2.0.0-delta", path = "../jaq-std" }
20-
jaq-json = { version = "1.0.0-delta", path = "../jaq-json" }
18+
jaq-core = { version = "2.0.0-epsilon", path = "../jaq-core" }
19+
jaq-std = { version = "2.0.0-epsilon", path = "../jaq-std" }
20+
jaq-json = { version = "1.0.0-epsilon", path = "../jaq-json" }
2121

2222
atty = "0.2"
2323
codesnake = { version = "0.2" }

0 commit comments

Comments
 (0)