Skip to content

Commit 3ebeb2c

Browse files
authored
Bump version to 0.3.0 for next development cycle (#90)
1 parent 48baada commit 3ebeb2c

4 files changed

Lines changed: 14 additions & 14 deletions

File tree

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ homepage = "https://github.com/apache/sedona-spatialbench/"
1212
license = "Apache-2.0"
1313
readme = "README.md"
1414
repository = "https://github.com/apache/sedona-spatialbench/"
15-
version = "0.2.0"
15+
version = "0.3.0"
1616

1717
[workspace.dependencies]
1818
geo = "0.31.0"

dev/release/README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ This will run all verification tests on your local checkout without requiring an
3939
To create a local tarball for testing:
4040

4141
```shell
42-
VERSION="0.2.0" && git archive HEAD --prefix=apache-sedona-spatialbench-${VERSION}/ | gzip > apache-sedona-spatialbench-${VERSION}-src.tar.gz
42+
VERSION="0.3.0" && git archive HEAD --prefix=apache-sedona-spatialbench-${VERSION}/ | gzip > apache-sedona-spatialbench-${VERSION}-src.tar.gz
4343
dev/release/verify-release-candidate.sh apache-sedona-spatialbench-${VERSION}-src.tar.gz
4444
```
4545

@@ -48,7 +48,7 @@ dev/release/verify-release-candidate.sh apache-sedona-spatialbench-${VERSION}-sr
4848
Once a release candidate has been uploaded to Apache dist, verify it using:
4949

5050
```shell
51-
dev/release/verify-release-candidate.sh 0.2.0 1
51+
dev/release/verify-release-candidate.sh 0.3.0 1
5252
```
5353

5454
This will download the release candidate from `https://dist.apache.org/repos/dist/dev/sedona/` and verify it.
@@ -77,16 +77,16 @@ a committer.
7777

7878
```shell
7979
git pull upstream main
80-
git branch -b branch-0.2.0
81-
git push upstream -u branch-0.2.0:branch-0.2.0
80+
git branch -b branch-0.3.0
81+
git push upstream -u branch-0.3.0:branch-0.3.0
8282
```
8383

8484
When the state of the `branch-x.x.x` branch is clean and checks are complete,
8585
the release candidate tag can be created:
8686

8787
```shell
88-
git tag -a sedona-spatialbench-0.2.0-rc1 -m "Tag Apache Sedona SpatialBench 0.2.0-rc1"
89-
git push upstream sedona-spatialbench-0.2.0-rc1
88+
git tag -a sedona-spatialbench-0.3.0-rc1 -m "Tag Apache Sedona SpatialBench 0.3.0-rc1"
89+
git push upstream sedona-spatialbench-0.3.0-rc1
9090
```
9191

9292
### Signing Commands
@@ -120,7 +120,7 @@ dev/sedona directory of the Apache distribution SVN:
120120

121121
```shell
122122
# Set version and RC number variables
123-
SEDONA_VERSION="0.2.0"
123+
SEDONA_VERSION="0.3.0"
124124
RC_NUMBER="1"
125125

126126
# Create the directory in SVN
@@ -154,7 +154,7 @@ are currently all derived from `Cargo.toml`, which can be updated to:
154154

155155
```
156156
[workspace.package]
157-
version = "0.3.0"
157+
version = "0.4.0"
158158
```
159159

160160
## Publishing to crates.io

spatialbench-arrow/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
[package]
1919
name = "spatialbench-arrow"
20-
version = "0.2.0"
20+
version = "0.3.0"
2121
edition = "2021"
2222
authors = ["Apache Sedona <dev@sedona.apache.org>"]
2323
description = "SpatialBench data generator into Apache Arrow format"
@@ -30,7 +30,7 @@ categories = ["science::geo", "database", "data-structures"]
3030

3131
[dependencies]
3232
arrow = { version = "56", default-features = false, features = ["prettyprint"] }
33-
spatialbench = { path = "../spatialbench", version = "0.2.0" }
33+
spatialbench = { path = "../spatialbench", version = "0.3.0" }
3434
geo = { workspace = true }
3535
geozero = { workspace = true }
3636

spatialbench-cli/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
[package]
1919
name = "spatialbench-cli"
20-
version = "0.2.0"
20+
version = "0.3.0"
2121
authors = { workspace = true }
2222
description = "Blazing fast pure Rust SpatialBench data generator command line tool."
2323
readme = "README.md"
@@ -32,8 +32,8 @@ categories = ["science::geo", "database", "command-line-utilities", "development
3232
arrow = "56"
3333
parquet = "56"
3434
clap = { version = "4.5.32", features = ["derive"] }
35-
spatialbench = { path = "../spatialbench", version = "0.2.0"}
36-
spatialbench-arrow = { path = "../spatialbench-arrow", version = "0.2.0" }
35+
spatialbench = { path = "../spatialbench", version = "0.3.0"}
36+
spatialbench-arrow = { path = "../spatialbench-arrow", version = "0.3.0" }
3737
tokio = { version = "1.44.1", features = ["full"]}
3838
futures = "0.3.31"
3939
num_cpus = "1.0"

0 commit comments

Comments
 (0)