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 8, 2025
1 parent eb7c921 commit c55d8db
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 @@ -28,6 +28,7 @@
- Add `Defn::field_index` and `Feature::field_index` ([#581](https://github.com/georust/gdal/pull/581))
- Add `Defn::geometry_field_index` and `Feature::geometry_field_index` ([#594](https://github.com/georust/gdal/pull/594))
- Add `Dataset::has_capability` for dataset capability check ([#581](https://github.com/georust/gdal/pull/585))
- 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 @@ -79,7 +79,7 @@ pub use feature::{
OwnedFeatureIterator,
};
pub use gdal_sys::{OGRFieldType, OGRwkbGeometryType};
pub use geometry::{geometry_type_to_name, Geometry};
pub use geometry::{geometry_type_to_name, Geometry, GeometryRef};
pub use layer::{FieldDefn, Layer, LayerAccess, LayerCaps, LayerIterator, OwnedLayer};
pub use options::LayerOptions;
pub use transaction::Transaction;
Expand Down

0 comments on commit c55d8db

Please sign in to comment.