Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v0.12.0? #191

Closed
wants to merge 3 commits into from
Closed
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
1 change: 0 additions & 1 deletion geozero-shp/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ mod shp_reader;
mod shx_reader;

pub use crate::header::ShapeType;
pub use crate::property_processor::*;
pub use crate::reader::Reader;
pub use crate::shp_reader::NO_DATA;

Expand Down
8 changes: 8 additions & 0 deletions geozero/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## 0.12.0 - (release date TBD)

* Added feature `with-gdal-bindgen` to build gdal support with the `bindgen` feature. This is useful when building against a recent gdal, for which the project hasn't yet pre-built bindings.
* Breaking: update flatgeobuf to 4.0.0
* Update errors to include more detail
* Update Wkb to allow non-owned buffers
* Fix `with-mvt` feature no longer requires `protoc` runtime dependency

## 0.11.0 (2023-08-28)

* Add support for raw WKB DB queries
Expand Down
3 changes: 2 additions & 1 deletion geozero/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ license.workspace = true
default = ["with-svg", "with-wkt", "with-geo", "with-geojson"]
with-arrow = ["dep:arrow2"]
with-csv = ["dep:csv", "with-wkt"]
with-gdal = ["dep:gdal", "dep:gdal-sys"]
with-gdal = ["dep:gdal"]
with-gdal-bindgen = [ "with-gdal", "gdal?/bindgen" ]
with-geo = ["dep:geo-types"]
with-geojson = ["dep:geojson"]
with-geos = ["dep:geos"]
Expand Down
2 changes: 0 additions & 2 deletions geozero/src/gpkg/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,3 @@
//! ```

mod geopackage;

pub use geopackage::*;
9 changes: 2 additions & 7 deletions geozero/src/postgis/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,7 @@ mod postgis_sqlx;
/// # Ok(())
/// # }
///```
#[cfg(feature = "with-postgis-postgres")]
pub mod postgres {
pub use super::postgis_postgres::*;
}
pub mod postgres {}

/// PostGIS geometry type encoding/decoding for SQLx.
///
Expand Down Expand Up @@ -89,9 +86,7 @@ pub mod postgres {
/// # }
/// ```
#[cfg(feature = "with-postgis-sqlx")]
pub mod sqlx {
pub use super::postgis_sqlx::*;
}
pub mod sqlx {}

/// Postgis geometry type encoding for Diesel.
///
Expand Down