Skip to content

build: bump version #1602

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 9 commits into from
Apr 10, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
55 changes: 55 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,61 @@
Release history
===============

.. _changelog-unreleased:

v3.3.0 (2025-04-10)
===================

Bug Fixes
---------

* **core**: Ensure datetime format compliance with STAC specification (`#1573`_, `7e10e3a`_)

* **plugins**: Add datetime for ecmwf search (`#1572`_, `b785e7c`_)

* **plugins**: Check expiration time in token auth (`#1590`_, `15dbcb1`_)

* **providers**: ``geodes`` datetime search (`#1592`_, `87ade04`_)

* **providers**: Rename ``EO:CLMS:DAT:CORINE`` to ``EO:EEA:DAT:CORINE`` (`#1576`_, `2d3f6da`_)

Continuous Integration
----------------------

* Automatic changelog update (`#1601`_, `0625802`_)

Features
--------

* **plugins**: :class:`~eodag.plugins.search.build_search_result.ECMWFSearch` search-by-id (`#1580`_, `f296c52`_)

Testing
-------

* Fixed test for ecmwf dates (`#1588`_, `b6ca196`_)

.. _#1572: https://github.com/CS-SI/eodag/pull/1572
.. _#1573: https://github.com/CS-SI/eodag/pull/1573
.. _#1576: https://github.com/CS-SI/eodag/pull/1576
.. _#1580: https://github.com/CS-SI/eodag/pull/1580
.. _#1588: https://github.com/CS-SI/eodag/pull/1588
.. _#1590: https://github.com/CS-SI/eodag/pull/1590
.. _#1592: https://github.com/CS-SI/eodag/pull/1592
.. _#1599: https://github.com/CS-SI/eodag/pull/1599
.. _#1601: https://github.com/CS-SI/eodag/pull/1601
.. _#1603: https://github.com/CS-SI/eodag/pull/1603
.. _0625802: https://github.com/CS-SI/eodag/commit/0625802e62f5be02560f6b015c65d0643e7cb720
.. _15dbcb1: https://github.com/CS-SI/eodag/commit/15dbcb17b14becdce57087fdba5b60adeb4a7551
.. _2d3f6da: https://github.com/CS-SI/eodag/commit/2d3f6dac273cb70f55dfa9eb3c898266a4c93552
.. _548fded: https://github.com/CS-SI/eodag/commit/548fdedc7a30d488302a685c4c8361ba29c2068f
.. _6af7ce4: https://github.com/CS-SI/eodag/commit/6af7ce499d00c32af3754ce30ebcb8fc392638a9
.. _7e10e3a: https://github.com/CS-SI/eodag/commit/7e10e3aeb27220fd023f1cb00198ed2304ea3486
.. _87ade04: https://github.com/CS-SI/eodag/commit/87ade04922356eb78cf1798a8fb81bcea8057595
.. _b6ca196: https://github.com/CS-SI/eodag/commit/b6ca1968d60d6123e818f1eec06fc1fa386e465a
.. _b785e7c: https://github.com/CS-SI/eodag/commit/b785e7c15c8dc60efbe0f38ac4d6487d8917b1aa
.. _f296c52: https://github.com/CS-SI/eodag/commit/f296c526a803607e23c477a9da679b5f27e142dc


v3.2.0 (2025-04-01)
===================

Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ An eodag instance can be exposed through a STAC compliant REST api from the comm

.. code-block:: bash

docker run -p 5000:5000 --rm csspace/eodag-server:3.2.0
docker run -p 5000:5000 --rm csspace/eodag-server:3.3.0

You can also browse over your STAC API server using `STAC Browser <https://github.com/radiantearth/stac-browser>`_.
Simply run:
Expand Down
4 changes: 2 additions & 2 deletions charts/eodag-server/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
apiVersion: v2
appVersion: 3.2.0
appVersion: 3.3.0
dependencies:
- name: common
repository: oci://registry-1.docker.io/bitnamicharts
Expand All @@ -15,4 +15,4 @@ name: eodag-server
sources:
- https://github.com/CS-SI/eodag
type: application
version: 3.2.0
version: 3.3.0
2 changes: 1 addition & 1 deletion docs/stac_rest.rst
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ available on `https://hub.docker.com/r/csspace/eodag-server <https://hub.docker.

.. code-block:: bash

$ docker run -p 5000:5000 --rm csspace/eodag-server:3.2.0
$ docker run -p 5000:5000 --rm csspace/eodag-server:3.3.0

Example
-------
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"

[tool.setuptools_scm]
fallback_version = "3.2.1.dev0"
fallback_version = "3.3.1.dev0"

[tool.coverage.report]
exclude_lines = [
Expand Down