upgrade dependencies. #76

This commit is contained in:
Nico Mandery 2023-12-16 20:23:29 +01:00
parent f032c2c93b
commit 9d80a2bf9f
12 changed files with 33 additions and 18 deletions

View File

@ -1,4 +1,5 @@
[workspace]
resolver = "2"
members = [
"h3ron",

View File

@ -10,10 +10,13 @@ without github actions and without having to coordinate the release process with
python extension.
## h3ron-graph Unreleased
## h3ron-graph 0.7.0 - 2023-12-16
### Changed
* Upgrade `lz4_flex` to 0.11, `osmpbfreader` to 0.16
* Upgraded `geo` to 0.26
* Upgrade `indexmap` to 2
* Upgrade `h3ron` to 0.18
## h3ron-graph 0.6.0 - 2023-01-19
### Changed

View File

@ -1,6 +1,6 @@
[package]
name = "h3ron-graph"
version = "0.6.0"
version = "0.7.0"
authors = ["Nico Mandery <nico@nmandery.net>"]
description = "Graph algorithms on edges of th3 H3 spatial indexing system"
edition = "2021"
@ -22,7 +22,7 @@ io_osm = ["osmpbfreader"]
io_serde_util = ["bincode", "lz4_flex", "h3ron/use-serde"]
[dependencies]
geo = "0.26"
geo = "0.27"
geo-types = "0.7"
rayon = "^1.5"
log = "^0.4"
@ -32,7 +32,7 @@ num-traits = "0.2"
[dependencies.h3ron]
path = "../h3ron"
version = "0.17" # for publishing on crates.io
version = "0.18" # for publishing on crates.io
features = ["use-rayon", "roaring", "use-serde"]
[dependencies.smallvec]
@ -48,7 +48,7 @@ version = "1"
features = ["derive"]
[dependencies.ordered-float]
version = "3"
version = "4"
features = ["serde"]
optional = true

View File

@ -11,7 +11,10 @@ python extension.
## h3ron-h3-sys Unreleased
* Upgrade `bindgen` from 0.63 to 0.66 and rebuild the prebuild bindings.
## h3ron-h3-sys 0.17.0 - 2023-12-16
### Changed
* Upgrade `bindgen` from 0.63 to 0.69 and rebuild the prebuild bindings.
## h3ron-h3-sys 0.16.0 - 2023-01-19
### Changed

View File

@ -1,6 +1,6 @@
[package]
name = "h3ron-h3-sys"
version = "0.16.0"
version = "0.17.0"
description = "bindgen-generated lowlevel bindings for statically linked libh3"
authors = ["Nico Mandery <nico@nmandery.net>"]
build = "build.rs"
@ -37,7 +37,7 @@ version = "0.7"
optional = true
[build-dependencies]
bindgen = { version = "^0.66", optional = true }
bindgen = { version = "^0.69", optional = true }
regex = "^1.5.5"
cc = "1"
glob = "0.3"

View File

@ -1,4 +1,4 @@
/* automatically generated by rust-bindgen 0.66.1 */
/* automatically generated by rust-bindgen 0.69.1 */
#[doc = " @brief Identifier for an object (cell, edge, etc) in the H3 system.\n\n The H3Index fits within a 64-bit unsigned integer."]
pub type H3Index = u64;

View File

@ -11,6 +11,10 @@ python extension.
## h3ron-ndarray Unreleased
## h3ron-ndarray 0.18.0 - 2023-12-16
### Changed
* Upgrade `h3ron` to 0.18
## h3ron-ndarray 0.17.0 - 2023-01-19
### Changed
* Upgrade `gdal` from 0.13 to 0.14.

View File

@ -1,6 +1,6 @@
[package]
name = "h3ron-ndarray"
version = "0.17.0"
version = "0.18.0"
authors = ["Nico Mandery <nico@nmandery.net>"]
description = "Integration with the ndarray crate to generate H3 cells from raster data (using gdal, ...)"
edition = "2021"
@ -22,14 +22,14 @@ features = ["rayon"]
[dependencies.h3ron]
path = "../h3ron"
version = "0.17" # for publishing on crates.io
version = "0.18" # for publishing on crates.io
features = ["use-rayon"]
[dev-dependencies]
approx = "^0.5"
env_logger = "^0.10"
ordered-float = "3"
ordered-float = "4"
[dev-dependencies.criterion]
version = "^0.5"

View File

@ -1,9 +1,12 @@
# Changelog
## h3ron-polars Unreleased
## h3ron-polars 0.4.0 - 2023-12-16
* Upgraded `polars` to v0.32, `static_aabb2d_index` to v1
* Upgraded `geo` to 0.26
* Upgraded `rstar` to 0.11
* Upgrade `h3ron` to 0.18
## h3ron-polars 0.3.0 - 2023-01-19
* Upgrade polars to v0.26

View File

@ -1,6 +1,6 @@
[package]
name = "h3ron-polars"
version = "0.3.0"
version = "0.4.0"
authors = ["Nico Mandery <nico@nmandery.net>"]
description = "Integration of the h3 geospatial indexing system with polars dataframes"
edition = "2021"
@ -23,7 +23,7 @@ si_full = ["si_kdtree", "si_rtree", "si_packed_hilbert_rtree"]
serde = ["dep:serde", "polars-core/serde"]
[dependencies]
geo = "0.26"
geo = "0.27"
geo-types = "0.7"
kdbush = { version = "0.2", optional = true }
polars-core = "0.32"
@ -35,7 +35,7 @@ thiserror = "1"
[dependencies.h3ron]
path = "../h3ron"
version = "0.17"
version = "0.18"
features = ["indexmap"]
[dev-dependencies]

View File

@ -10,8 +10,9 @@ done without github actions and without having to coordinate the release process
python extension.
## h3ron Unreleased
* Upgraded `geo` to 0.26
* Upgraded `geo` to 0.27
* Upgraded `indexmap` to 2 and `hashbrown` to 0.14
* Upgrade h3ron-h3-sys to 0.17
## h3ron 0.17.0 - 2023-01-19
### Added

View File

@ -1,7 +1,7 @@
[package]
name = "h3ron"
description = "High-level rust API for H3"
version = "0.17.0"
version = "0.18.0"
authors = ["Nico Mandery <nico@nmandery.net>"]
edition = "2021"
license = "MIT"
@ -21,7 +21,7 @@ parse = ["dep:nom"]
indexmap = ["dep:indexmap"]
[dependencies]
geo = "^0.26"
geo = "^0.27"
thiserror = "1.0"
ahash = "0.8"
indexmap = { version = "2", optional = true }
@ -29,7 +29,7 @@ indexmap = { version = "2", optional = true }
[dependencies.h3ron-h3-sys]
path = "../h3ron-h3-sys"
features = ["geo-types"]
version = "0.16" # for publishing on crates.io
version = "0.17" # for publishing on crates.io
[dependencies.geo-types]
version = "^0.7"