Skip to content

Commit 897fef8

Browse files
authored
release: v0.6.0-rc.0 (#87)
Kicking the release tyres after the rename.
1 parent fe2e333 commit 897fef8

File tree

3 files changed

+47
-48
lines changed

3 files changed

+47
-48
lines changed

CHANGELOG.md

Lines changed: 15 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
# Changelog
22

33
All notable changes to this project will be documented in this file.
4-
54
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
65

76
## [Unreleased]
87

9-
## [0.6.0-beta.0] - 2025-03-13
8+
## [0.6.0-rc.0] - 2025-04-17
109

1110
### Added
1211

@@ -182,20 +181,20 @@ Non-functional release to fix releasing from Github actions.
182181

183182
Initial release.
184183

185-
[Unreleased]: https://github.com/gadomski/rustac-py/compare/v0.6.0-beta.0...main
186-
[0.6.0-beta.0]: https://github.com/gadomski/rustac-py/compare/v0.5.9...v0.6.0-beta.0
187-
[0.5.9]: https://github.com/gadomski/rustac-py/compare/v0.5.8...v0.5.9
188-
[0.5.8]: https://github.com/gadomski/rustac-py/compare/v0.5.7...v0.5.8
189-
[0.5.7]: https://github.com/gadomski/rustac-py/compare/v0.5.6...v0.5.7
190-
[0.5.6]: https://github.com/gadomski/rustac-py/compare/v0.5.5...v0.5.6
191-
[0.5.5]: https://github.com/gadomski/rustac-py/compare/v0.5.4...v0.5.5
192-
[0.5.4]: https://github.com/gadomski/rustac-py/compare/v0.5.3...v0.5.4
193-
[0.5.3]: https://github.com/gadomski/rustac-py/compare/v0.5.2...v0.5.3
194-
[0.5.2]: https://github.com/gadomski/rustac-py/compare/v0.5.1...v0.5.2
195-
[0.5.1]: https://github.com/gadomski/rustac-py/compare/v0.5.0...v0.5.1
196-
[0.5.0]: https://github.com/gadomski/rustac-py/compare/v0.4.0...v0.5.0
197-
[0.4.0]: https://github.com/gadomski/rustac-py/compare/v0.3.0...v0.4.0
198-
[0.3.0]: https://github.com/gadomski/rustac-py/releases/tag/v0.3.0
184+
[Unreleased]: https://github.com/stac-utils/rustac-py/compare/v0.6.0-rc.0...main
185+
[0.6.0-rc.0]: https://github.com/stac-utils/rustac-py/compare/v0.5.9...v0.6.0-rc.0
186+
[0.5.9]: https://github.com/stac-utils/rustac-py/compare/v0.5.8...v0.5.9
187+
[0.5.8]: https://github.com/stac-utils/rustac-py/compare/v0.5.7...v0.5.8
188+
[0.5.7]: https://github.com/stac-utils/rustac-py/compare/v0.5.6...v0.5.7
189+
[0.5.6]: https://github.com/stac-utils/rustac-py/compare/v0.5.5...v0.5.6
190+
[0.5.5]: https://github.com/stac-utils/rustac-py/compare/v0.5.4...v0.5.5
191+
[0.5.4]: https://github.com/stac-utils/rustac-py/compare/v0.5.3...v0.5.4
192+
[0.5.3]: https://github.com/stac-utils/rustac-py/compare/v0.5.2...v0.5.3
193+
[0.5.2]: https://github.com/stac-utils/rustac-py/compare/v0.5.1...v0.5.2
194+
[0.5.1]: https://github.com/stac-utils/rustac-py/compare/v0.5.0...v0.5.1
195+
[0.5.0]: https://github.com/stac-utils/rustac-py/compare/v0.4.0...v0.5.0
196+
[0.4.0]: https://github.com/stac-utils/rustac-py/compare/v0.3.0...v0.4.0
197+
[0.3.0]: https://github.com/stac-utils/rustac-py/releases/tag/v0.3.0
199198
[0.2.2]: https://github.com/stac-utils/stac-rs/compare/python-v0.2.1...python-v0.2.2
200199
[0.2.1]: https://github.com/stac-utils/stac-rs/compare/python-v0.2.0...python-v0.2.1
201200
[0.2.0]: https://github.com/stac-utils/stac-rs/compare/python-v0.1.3...python-v0.2.0

Cargo.lock

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

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rustac"
3-
version = "0.6.0-beta.0"
3+
version = "0.6.0-rc.0"
44
edition = "2021"
55
publish = false
66

@@ -15,13 +15,13 @@ duckdb-bundled = ["stac-duckdb/bundled"]
1515
clap = "4.5.31"
1616
geojson = "0.24.1"
1717
geoarrow = "0.4.0-beta.3"
18-
pyo3 = { version = "0.23.5", features = ["extension-module"] }
19-
pyo3-async-runtimes = { version = "0.23.0", features = [
18+
pyo3 = { version = "0.24.1", features = ["extension-module"] }
19+
pyo3-async-runtimes = { version = "0.24.0", features = [
2020
"tokio",
2121
"tokio-runtime",
2222
] }
23-
pyo3-arrow = "0.7.2"
24-
pythonize = "0.23.0"
23+
pyo3-arrow = "0.8.0"
24+
pythonize = "0.24.0"
2525
serde = "1.0.217"
2626
serde_json = "1.0.138"
2727
stac = { features = [

0 commit comments

Comments
 (0)