diff --git a/CHANGELOG.md b/CHANGELOG.md index bbaa63f..78f02ae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +## [0.2.0] - 2024-09-26 +### Added +### Changed +### Deprecated +### Removed +### Fixed +- move to `pyopenrivercam=0.6.1` to prevent issues with new `rasterio=1.4.0` +### Security + + ## [0.2.0] - 2024-09-26 ### Added - OpenRiverCam Logos and trademarks diff --git a/nodeorc/__init__.py b/nodeorc/__init__.py index 938b8ab..39d4d7b 100644 --- a/nodeorc/__init__.py +++ b/nodeorc/__init__.py @@ -1,6 +1,6 @@ """NodeORC: Automated edge and cloud image-based discharge estimation with OpenRiverCam""" import os -__version__ = "0.2.0" +__version__ = "0.2.1" __home__ = os.path.join(os.path.expanduser("~"), ".nodeorc") if not(os.path.isdir(__home__)): diff --git a/pyproject.toml b/pyproject.toml index ae434b6..c833c56 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,7 +12,7 @@ dependencies = [ "dask[distributed]", "pika", "pydantic==2.3.0", - "pyopenrivercam==0.6.0", + "pyopenrivercam==0.6.1", "python-dotenv", "requests", "sqlalchemy"