diff --git a/python/CHANGELOG.md b/python/CHANGELOG.md new file mode 100644 index 0000000..e787acb --- /dev/null +++ b/python/CHANGELOG.md @@ -0,0 +1,5 @@ +# Changelog + +## [0.1.0] - 2025-03-18 + +- Initial release. diff --git a/python/Cargo.lock b/python/Cargo.lock index 53f3ead..f8b4f0d 100644 --- a/python/Cargo.lock +++ b/python/Cargo.lock @@ -988,7 +988,7 @@ dependencies = [ [[package]] name = "py-async-tiff" -version = "0.1.0-beta.2" +version = "0.1.0" dependencies = [ "async-tiff", "bytes", @@ -1006,9 +1006,9 @@ dependencies = [ [[package]] name = "pyo3" -version = "0.23.5" +version = "0.24.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7778bffd85cf38175ac1f545509665d0b9b92a198ca7941f131f85f7a4f9a872" +checksum = "7f1c6c3591120564d64db2261bec5f910ae454f01def849b9c22835a84695e86" dependencies = [ "cfg-if", "chrono", @@ -1026,9 +1026,9 @@ dependencies = [ [[package]] name = "pyo3-async-runtimes" -version = "0.23.0" +version = "0.24.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "977dc837525cfd22919ba6a831413854beb7c99a256c03bf8624ad707e45810e" +checksum = "dd0b83dc42f9d41f50d38180dad65f0c99763b65a3ff2a81bf351dd35a1df8bf" dependencies = [ "futures", "once_cell", @@ -1039,9 +1039,9 @@ dependencies = [ [[package]] name = "pyo3-build-config" -version = "0.23.5" +version = "0.24.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "94f6cbe86ef3bf18998d9df6e0f3fc1050a8c5efa409bf712e661a4366e010fb" +checksum = "e9b6c2b34cf71427ea37c7001aefbaeb85886a074795e35f161f5aecc7620a7a" dependencies = [ "once_cell", "target-lexicon", @@ -1049,9 +1049,9 @@ dependencies = [ [[package]] name = "pyo3-bytes" -version = "0.1.3" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4404970fe5cad3b196021a9cc555634735a4f11d1df53f8c482a329151e7dfa9" +checksum = "781c3168801c4ae94f1e642e6d41b7a1db67b62ab1bf6138e0771f76d29529b3" dependencies = [ "bytes", "pyo3", @@ -1059,9 +1059,9 @@ dependencies = [ [[package]] name = "pyo3-ffi" -version = "0.23.5" +version = "0.24.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e9f1b4c431c0bb1c8fb0a338709859eed0d030ff6daa34368d3b152a63dfdd8d" +checksum = "5507651906a46432cdda02cd02dd0319f6064f1374c9147c45b978621d2c3a9c" dependencies = [ "libc", "pyo3-build-config", @@ -1069,9 +1069,9 @@ dependencies = [ [[package]] name = "pyo3-macros" -version = "0.23.5" +version = "0.24.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fbc2201328f63c4710f68abdf653c89d8dbc2858b88c5d88b0ff38a75288a9da" +checksum = "b0d394b5b4fd8d97d48336bb0dd2aebabad39f1d294edd6bcd2cccf2eefe6f42" dependencies = [ "proc-macro2", "pyo3-macros-backend", @@ -1081,9 +1081,9 @@ dependencies = [ [[package]] name = "pyo3-macros-backend" -version = "0.23.5" +version = "0.24.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fca6726ad0f3da9c9de093d6f116a93c1a38e417ed73bf138472cf4064f72028" +checksum = "fd72da09cfa943b1080f621f024d2ef7e2773df7badd51aa30a2be1f8caa7c8e" dependencies = [ "heck", "proc-macro2", @@ -1094,9 +1094,9 @@ dependencies = [ [[package]] name = "pyo3-object_store" -version = "0.1.0" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4e1de0e607cea167dc53057b946f9b9c494081b339196baf2d16c17b6f94ab04" +checksum = "08d86e64cc8cb37a7950eadeee4a80c7d8467c3871baf176996af917fa6cda36" dependencies = [ "async-trait", "bytes", @@ -1550,9 +1550,9 @@ dependencies = [ [[package]] name = "target-lexicon" -version = "0.12.16" +version = "0.13.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1" +checksum = "e502f78cdbb8ba4718f566c418c52bc729126ffd16baee5baa718cf25dd5a69a" [[package]] name = "thiserror" diff --git a/python/Cargo.toml b/python/Cargo.toml index b359f71..8cf8a01 100644 --- a/python/Cargo.toml +++ b/python/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "py-async-tiff" -version = "0.1.0-beta.2" +version = "0.1.0" authors = ["Kyle Barron "] edition = "2021" # description = "Fast, memory-efficient 2D spatial indexes for Python." @@ -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"