Skip to content

Commit

Permalink
Merge #224
Browse files Browse the repository at this point in the history
224: Make `gdal::rasters::OptimizeMode` public r=lnicola a=msalib

- [X] I agree to follow the project's [code of conduct](https://github.com/georust/gdal/blob/master/CODE_OF_CONDUCT.md).
- [X] I added an entry to `CHANGES.md` if knowledge of this change could be valuable to users.
---
It was private due to an oversight on my part.


Co-authored-by: Michael Salib <[email protected]>
  • Loading branch information
bors[bot] and msalib authored Oct 14, 2021
2 parents b40b88c + 6b1f1da commit 08e77b5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

## Unreleased

- Make `gdal::rasters::OptimizeMode` public
- <https://github.com/georust/gdal/pull/224>

## 0.8 - 0.10

- Update types to fix build on ppc64le.
Expand Down
2 changes: 1 addition & 1 deletion src/raster/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ mod types;
mod warp;

pub use rasterband::{Buffer, ByteBuffer, ColorInterpretation, RasterBand, ResampleAlg};
pub use rasterize::{rasterize, BurnSource, MergeAlgorithm, RasterizeOptions};
pub use rasterize::{rasterize, BurnSource, MergeAlgorithm, OptimizeMode, RasterizeOptions};
pub use types::{GDALDataType, GdalType};
pub use warp::reproject;

Expand Down

0 comments on commit 08e77b5

Please sign in to comment.