From 514a5ccb7ae1d799547911a7d0a1eb86797c60a1 Mon Sep 17 00:00:00 2001 From: David Montero Loaiza <49817852+davemlz@users.noreply.github.com> Date: Sun, 23 Jun 2024 16:23:12 +0200 Subject: [PATCH] VERSION: 2024.6.0 --- cubo/__init__.py | 2 +- docs/changelog.rst | 5 +++++ docs/conf.py | 2 +- setup.py | 2 +- 4 files changed, 8 insertions(+), 3 deletions(-) diff --git a/cubo/__init__.py b/cubo/__init__.py index d83a5a8..3428571 100644 --- a/cubo/__init__.py +++ b/cubo/__init__.py @@ -1,6 +1,6 @@ """cubo - On-Demand Earth System Data Cubes in Python""" -__version__ = "2024.1.1" +__version__ = "2024.6.0" __author__ = "David Montero Loaiza " __all__ = [] diff --git a/docs/changelog.rst b/docs/changelog.rst index a018b28..962f462 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,6 +1,11 @@ Changelog ========= +v2024.6.0 +--------- + +- Pinned: :code:`numpy<2.0.0` as :code:`stackstac` breaks with :code:`numpy>=2.0.0`. + v2024.1.1 --------- diff --git a/docs/conf.py b/docs/conf.py index d260d5e..24023f3 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 = "2024.1.1" +release = "2024.6.0" # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index 2b2f47a..a686969 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ def read(filename): setup( name="cubo", - version="2024.1.1", + version="2024.6.0", url="https://github.com/davemlz/cubo", license="MIT", author="David Montero Loaiza",