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
5 changes: 5 additions & 0 deletions python/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Changelog

## [0.1.0] - 2025-03-18

- Initial release.
38 changes: 19 additions & 19 deletions python/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions python/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "py-async-tiff"
version = "0.1.0-beta.2"
version = "0.1.0"
authors = ["Kyle Barron <[email protected]>"]
edition = "2021"
# description = "Fast, memory-efficient 2D spatial indexes for Python."
Expand All @@ -21,10 +21,10 @@ async-tiff = { path = "../" }
bytes = "1.10.1"
futures = "0.3.31"
object_store = "0.12"
pyo3 = { version = "0.23.0", features = ["macros"] }
pyo3-async-runtimes = "0.23"
pyo3-bytes = "0.1.3"
pyo3-object_store = "0.1.0-beta.4"
pyo3 = { version = "0.24.0", features = ["macros"] }
pyo3-async-runtimes = "0.24"
pyo3-bytes = "0.2"
pyo3-object_store = "0.2.0"
rayon = "1.10.0"
tokio-rayon = "2.1.0"
thiserror = "1"
Expand Down