Skip to content

Commit b2fbda1

Browse files
committed
new release candidate
1 parent 7385c3a commit b2fbda1

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ members = [
1313
resolver = "2"
1414

1515
[workspace.package]
16-
version = "0.3.1"
16+
version = "0.3.2-rc1"
1717
authors = ["Jonas Pleyer <jonas.dev@pleyer.org>"]
1818
edition = "2024"
1919
license = "GPL-2.0"

cellular_raza-benchmarks/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@ criterion = { version = "0.7", features = ["html_reports"] }
2424
clap = { version = "4.5.7", features = ["derive"] }
2525
kdam.workspace = true
2626
serde_json = "1.0.118"
27-
glob = "0.3.1"
27+
glob = "0.3.2-rc1"
2828
tempfile.workspace = true
2929
itertools.workspace = true
3030

3131
[dependencies.cellular_raza]
3232
path = "../cellular_raza"
33-
version = "0.3.1"
33+
version = "0.3.2-rc1"
3434

3535
[features]
3636
default = ["gradients"]

cellular_raza-building-blocks/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ serde_test = "1.0.177"
3535

3636
[dependencies.cellular_raza-concepts]
3737
path = "../cellular_raza-concepts"
38-
version = "0.3.1"
38+
version = "0.3.2-rc1"
3939

4040
[features]
4141
default = ["gradients"]

cellular_raza-concepts/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ pyo3 = { workspace = true, optional = true }
2525

2626
[dependencies.cellular_raza-concepts-derive]
2727
path = "../cellular_raza-concepts-derive"
28-
version = "0.3.1"
28+
version = "0.3.2-rc1"
2929

3030
[dev-dependencies]
3131
rand = { workspace = true }

cellular_raza-core/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,11 +56,11 @@ opencl3 = { version = "0.12.0", optional = true }
5656

5757
[dependencies.cellular_raza-concepts]
5858
path = "../cellular_raza-concepts"
59-
version = "0.3.1"
59+
version = "0.3.2-rc1"
6060

6161
[dependencies.cellular_raza-core-proc-macro]
6262
path = "../cellular_raza-core-proc-macro"
63-
version = "0.3.1"
63+
version = "0.3.2-rc1"
6464

6565
[dev-dependencies]
6666
tempfile.workspace = true

cellular_raza/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@ all-features = true
2525

2626
[dependencies.cellular_raza-core]
2727
path = "../cellular_raza-core"
28-
version = "0.3.1"
28+
version = "0.3.2-rc1"
2929

3030
[dependencies.cellular_raza-building-blocks]
3131
path = "../cellular_raza-building-blocks"
32-
version = "0.3.1"
32+
version = "0.3.2-rc1"
3333

3434
[dependencies.cellular_raza-concepts]
3535
path = "../cellular_raza-concepts"
36-
version = "0.3.1"
36+
version = "0.3.2-rc1"
3737

3838
[dev-dependencies]
3939
num.workspace = true

update_version.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
OLD_VERSION='0\.3\.1-rc1'
2-
NEW_VERSION='0\.3\.1'
1+
OLD_VERSION='0\.3\.1'
2+
NEW_VERSION='0\.3\.2-rc1'
33

44
for file in $(grep -lr $OLD_VERSION --exclude-dir target *); do
55
sed -i "s/$OLD_VERSION/$NEW_VERSION/" $file

0 commit comments

Comments
 (0)