Skip to content

Commit a65176f

Browse files
committed
Release 2.8.0-alpha.1
1 parent 960b737 commit a65176f

File tree

8 files changed

+26
-17
lines changed

8 files changed

+26
-17
lines changed

Cargo.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/bencher_compat/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "codspeed-bencher-compat"
3-
version = "2.8.0-alpha.0"
3+
version = "2.8.0-alpha.1"
44
rust-version = "1.74" # MSRV
55
edition = "2021"
66
description = "Bencher compatibility layer for CodSpeed"
@@ -19,7 +19,7 @@ keywords = ["codspeed", "benchmark", "bencher"]
1919

2020
[dependencies]
2121
bencher = "0.1.5"
22-
codspeed = { path = "../codspeed", version = "=2.8.0-alpha.0" }
22+
codspeed = { path = "../codspeed", version = "=2.8.0-alpha.1" }
2323

2424
[[bench]]
2525
name = "bencher_example"

crates/cargo-codspeed/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cargo-codspeed"
3-
version = "2.8.0-alpha.0"
3+
version = "2.8.0-alpha.1"
44
edition = "2021"
55
description = "Cargo extension to build & run your codspeed benchmarks"
66
authors = ["Arthur Pastel <[email protected]>"]
@@ -26,7 +26,7 @@ itertools = "0.13.0"
2626
anstyle = "1.0.8"
2727
serde = { workspace = true }
2828
serde_json = { workspace = true }
29-
codspeed = { path = "../codspeed", version = "=2.8.0-alpha.0" }
29+
codspeed = { path = "../codspeed", version = "=2.8.0-alpha.1" }
3030
glob = "0.3.2"
3131
statrs = "0.18.0"
3232

crates/codspeed/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "codspeed"
3-
version = "2.8.0-alpha.0"
3+
version = "2.8.0-alpha.1"
44
rust-version = "1.74" # MSRV
55
edition = "2021"
66
description = "Core instrumentation library for CodSpeed"

crates/criterion_compat/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "codspeed-criterion-compat"
3-
version = "2.8.0-alpha.0"
3+
version = "2.8.0-alpha.1"
44
rust-version = "1.74" # MSRV
55
edition = "2021"
66
description = "Criterion.rs compatibility layer for CodSpeed"
@@ -18,7 +18,7 @@ categories = [
1818
keywords = ["codspeed", "benchmark", "criterion"]
1919
[dependencies]
2020
criterion = { version = "0.5.1", default-features = false }
21-
codspeed = { path = "../codspeed", version = "=2.8.0-alpha.0" }
21+
codspeed = { path = "../codspeed", version = "=2.8.0-alpha.1" }
2222
colored = "2.1.0"
2323

2424
futures = { version = "0.3", default-features = false, optional = true }

crates/divan_compat/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "codspeed-divan-compat"
3-
version = "2.8.0-alpha.0"
3+
version = "2.8.0-alpha.1"
44
rust-version = "1.74" # MSRV TODO: Check versioning
55
edition = "2021"
66
description = "Divan compatibility layer for CodSpeed"
@@ -18,7 +18,7 @@ categories = [
1818
keywords = ["codspeed", "benchmark", "divan"]
1919

2020
[dependencies]
21-
codspeed = { path = "../codspeed", version = "=2.8.0-alpha.0" }
21+
codspeed = { path = "../codspeed", version = "=2.8.0-alpha.1" }
2222
divan = { package = "codspeed-divan-compat-walltime", path = "./divan_fork", version = "=0.1.17" }
2323
codspeed-divan-compat-macros = { version = "=2.8.0-alpha.0", path = './macros' }
2424

crates/divan_compat/divan_fork/Cargo.toml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,11 @@ divan-macros = { version = "=0.1.17" }
1919
cfg-if = "1"
2020
clap = { version = "4", default-features = false, features = ["std", "env"] }
2121
condtype = "1.3"
22-
regex = { package = "regex-lite", version = "0.1", default-features = false, features = ["std", "string"] }
23-
codspeed = { path = "../../codspeed", version = "=2.8.0-alpha.0" }
22+
regex = { package = "regex-lite", version = "0.1", default-features = false, features = [
23+
"std",
24+
"string",
25+
] }
26+
codspeed = { path = "../../codspeed", version = "=2.8.0-alpha.1" }
2427

2528
[target.'cfg(unix)'.dependencies]
2629
libc = "0.2.148"

crates/divan_compat/macros/Cargo.toml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,10 @@ divan-macros = { version = "=0.1.17" }
2626
proc-macro2 = "1"
2727
quote = { version = "1", default-features = false }
2828
# Versions prior to *.18 fail to parse empty attribute metadata.
29-
syn = { version = "^2.0.18", default-features = false, features = ["full", "clone-impls", "parsing", "printing", "proc-macro"] }
29+
syn = { version = "^2.0.18", default-features = false, features = [
30+
"full",
31+
"clone-impls",
32+
"parsing",
33+
"printing",
34+
"proc-macro",
35+
] }

0 commit comments

Comments
 (0)