diff --git a/docs/appendix/version_updates.md b/docs/appendix/version_updates.md index 17240a2..fb7f322 100644 --- a/docs/appendix/version_updates.md +++ b/docs/appendix/version_updates.md @@ -2,10 +2,11 @@ | Version | Date | Notes | | ------- | ---- | ----- | -| 0.7 | March 2024 | Minor bug fixes and more detailed docstrings to support readthedocs | -| 0.6 | February 2024 | Added `data.bedrock_mask_from_vector()` function. | -| 0.5 | January 2024 | Fixed bug in `_coreg.py` to improve Nuth and Kääb (2011)-style coregistration. | -| 0.4 | November 2023 | Made batch processing script available as an example. | -| 0.3 | September 2023 | Aligned search function with the new PGC-provided GeoParquet files | -| 0.2 | August 2023 | Update `load.mosaic()` function to include the new ArcticDEM mosaic v4.1 | -| 0.1 | May 2023 | Initial release | +| 0.8.0 | May 2024 | Iceberg detection now corrects for sea surface; final additions to documentation before public conda/pip release. +| 0.7.0 | March 2024 | Minor bug fixes and more detailed docstrings to support readthedocs | +| 0.6.0 | February 2024 | Added `data.bedrock_mask_from_vector()` function. | +| 0.5.0 | January 2024 | Fixed bug in `_coreg.py` to improve Nuth and Kääb (2011)-style coregistration. | +| 0.4.0 | November 2023 | Made batch processing script available as an example. | +| 0.3.0 | September 2023 | Aligned search function with the new PGC-provided GeoParquet files | +| 0.2.0 | August 2023 | Update `load.mosaic()` function to include the new ArcticDEM mosaic v4.1 | +| 0.1.0 | May 2023 | Initial release | diff --git a/src/pdemtools/__init__.py b/src/pdemtools/__init__.py index 457a6f0..8f29b25 100644 --- a/src/pdemtools/__init__.py +++ b/src/pdemtools/__init__.py @@ -6,6 +6,6 @@ from ._accessor import DemAccessor -__version__ = "0.7.0" +__version__ = "0.8.0" __all__ = ["search", "DemAccessor"]