diff --git a/docs/changelog.rst b/docs/changelog.rst index 65c4636..4595f66 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,6 +1,13 @@ Changelog ========= +v2023.7.0 +--------- + +- Fixed path separators by os `(#4) `_. +- Pinned latest versions: :code:`cubo>=2023.7.0`. +- Fixed the required datatype of the EPSG code for stackstac `(#5) `_. + v2023.3.0 --------- diff --git a/docs/conf.py b/docs/conf.py index 7bdad2c..2874f1e 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -27,7 +27,7 @@ author = "David Montero Loaiza" # The full version, including alpha/beta/rc tags -release = "2023.3.0" +release = "2023.7.0" # -- General configuration --------------------------------------------------- diff --git a/sen2nbar/__init__.py b/sen2nbar/__init__.py index 4f2e42d..acfa14d 100644 --- a/sen2nbar/__init__.py +++ b/sen2nbar/__init__.py @@ -1,6 +1,6 @@ """sen2nbar - Nadir BRDF Adjusted Reflectance (NBAR) for Sentinel-2 in Python""" -__version__ = "2023.3.0" +__version__ = "2023.7.0" __author__ = "David Montero Loaiza " __all__ = [] diff --git a/setup.py b/setup.py index 26f5c01..04c0cc4 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ def read(filename): setup( name="sen2nbar", - version="2023.3.0", + version="2023.7.0", url="https://github.com/ESDS-Leipzig/sen2nbar", license="MIT", author="David Montero Loaiza",