Skip to content
Merged
Show file tree
Hide file tree
Changes from 23 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: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

## 0.13.0 - unreleased

* New `wkt!` macro for compile time checking of static WKT text. (#137)
* BREAKING: Store dimension in wkt types (#135)
* This removes the publicly-accessible tuple member for each struct in `wkt::types`. Use public constructors to construct new objects and new public accessors to access internal data.
* WKT dimension is now always correctly inferred from the WKT string, even for empty geometries.
Expand Down
1 change: 1 addition & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ use crate::types::{

pub mod to_wkt;
mod tokenizer;
mod wkt_macro;

/// Error variant for this crate
pub mod error;
Expand Down
Loading
Loading