Skip to content

Commit

Permalink
Make GeometryRef public
Browse files Browse the repository at this point in the history
  • Loading branch information
lnicola committed Jan 11, 2025
1 parent 90d7cbf commit f4e78ab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
- Add `Dataset::has_capability` for dataset capability check ([#581](https://github.com/georust/gdal/pull/585))
- Add methods `add_point_zm`, `add_point_m`, `set_point_zm`, `set_point_m`, `get_point_zm`, `get_points_zm`, `iso_wkt` and `iso_wkb` to `Geometry` ([#600](https://github.com/georust/gdal/pull/600))
- Add functions `geometry_type_flatten`, `geometry_type_set_z`, `geometry_type_set_m`, `geometry_type_set_modifier`, `geometry_type_has_z` and `geometry_type_has_m` to `vector::geometry` ([#600](https://github.com/georust/gdal/pull/600))
- Make `GeometryRef` public ([#601](https://github.com/georust/gdal/pull/601))

### Fixed

Expand Down
2 changes: 1 addition & 1 deletion src/vector/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ pub use feature::{
pub use gdal_sys::{OGRFieldType, OGRwkbGeometryType};
pub use geometry::{
geometry_type_flatten, geometry_type_has_m, geometry_type_has_z, geometry_type_set_m,
geometry_type_set_modifier, geometry_type_set_z, geometry_type_to_name, Geometry,
geometry_type_set_modifier, geometry_type_set_z, geometry_type_to_name, Geometry, GeometryRef,
};
pub use layer::{FieldDefn, Layer, LayerAccess, LayerCaps, LayerIterator, OwnedLayer};
pub use options::LayerOptions;
Expand Down

0 comments on commit f4e78ab

Please sign in to comment.