Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 19 additions & 19 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 Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ members = [
resolver = "2"

[workspace.package]
version = "0.1.0"
version = "0.2.0"
authors = ["Apache Sedona <[email protected]>"]
license = "Apache-2.0"
homepage = "https://github.com/apache/sedona-db"
Expand Down
24 changes: 24 additions & 0 deletions dev/release/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -181,3 +181,27 @@ in the PyPI UI.
twine upload wheels/**/*.whl
rm -rf wheels
```

## Bump versions

After a successful release, versions on the `main` branch need to be updated. These
are currently all derived from `Cargo.toml`, which can be updated to:

```
[workspace.package]
version = "0.2.0"
```

The R package must also be updated. R Packages use a different convention for development
versions such that in preparation for 0.2.0 the development version should be
`0.1.0.9000`. This is set the DESCRIPTION of the requisite package.

Development versions and the changelog are derived from the presence of a development
tag on the main branch signifying where development of that version "started". After
the version bump PR merges, that commit should be tagged with the appropriate
development tag:

```shell
git tag -a apache-sedona-db-0.2.0.dev -m "tag dev 0.2.0"
git push upstream apache-sedona-db-0.2.0.dev
```
2 changes: 1 addition & 1 deletion r/sedonadb/DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: sedonadb
Title: Bindings for Apache SedonaDB
Version: 0.0.0.9000
Version: 0.1.0.9000
Authors@R:
person("Dewey", "Dunnington", , "[email protected]", role = c("aut", "cre"))
Description: Provides bindings for Apache SedonaDB, a lightweight
Expand Down
2 changes: 1 addition & 1 deletion r/sedonadb/src/rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

[package]
name = "sedonadbr"
version = "0.1.0"
version = { workspace = true }
edition = "2021"

[lib]
Expand Down