Skip to content

Commit 69a772d

Browse files
build: bump version (#1602)
1 parent f296c52 commit 69a772d

File tree

5 files changed

+60
-5
lines changed

5 files changed

+60
-5
lines changed

CHANGES.rst

+55
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,61 @@
22
Release history
33
===============
44

5+
.. _changelog-unreleased:
6+
7+
v3.3.0 (2025-04-10)
8+
===================
9+
10+
Bug Fixes
11+
---------
12+
13+
* **core**: Ensure datetime format compliance with STAC specification (`#1573`_, `7e10e3a`_)
14+
15+
* **plugins**: Add datetime for ecmwf search (`#1572`_, `b785e7c`_)
16+
17+
* **plugins**: Check expiration time in token auth (`#1590`_, `15dbcb1`_)
18+
19+
* **providers**: ``geodes`` datetime search (`#1592`_, `87ade04`_)
20+
21+
* **providers**: Rename ``EO:CLMS:DAT:CORINE`` to ``EO:EEA:DAT:CORINE`` (`#1576`_, `2d3f6da`_)
22+
23+
Continuous Integration
24+
----------------------
25+
26+
* Automatic changelog update (`#1601`_, `0625802`_)
27+
28+
Features
29+
--------
30+
31+
* **plugins**: :class:`~eodag.plugins.search.build_search_result.ECMWFSearch` search-by-id (`#1580`_, `f296c52`_)
32+
33+
Testing
34+
-------
35+
36+
* Fixed test for ecmwf dates (`#1588`_, `b6ca196`_)
37+
38+
.. _#1572: https://github.com/CS-SI/eodag/pull/1572
39+
.. _#1573: https://github.com/CS-SI/eodag/pull/1573
40+
.. _#1576: https://github.com/CS-SI/eodag/pull/1576
41+
.. _#1580: https://github.com/CS-SI/eodag/pull/1580
42+
.. _#1588: https://github.com/CS-SI/eodag/pull/1588
43+
.. _#1590: https://github.com/CS-SI/eodag/pull/1590
44+
.. _#1592: https://github.com/CS-SI/eodag/pull/1592
45+
.. _#1599: https://github.com/CS-SI/eodag/pull/1599
46+
.. _#1601: https://github.com/CS-SI/eodag/pull/1601
47+
.. _#1603: https://github.com/CS-SI/eodag/pull/1603
48+
.. _0625802: https://github.com/CS-SI/eodag/commit/0625802e62f5be02560f6b015c65d0643e7cb720
49+
.. _15dbcb1: https://github.com/CS-SI/eodag/commit/15dbcb17b14becdce57087fdba5b60adeb4a7551
50+
.. _2d3f6da: https://github.com/CS-SI/eodag/commit/2d3f6dac273cb70f55dfa9eb3c898266a4c93552
51+
.. _548fded: https://github.com/CS-SI/eodag/commit/548fdedc7a30d488302a685c4c8361ba29c2068f
52+
.. _6af7ce4: https://github.com/CS-SI/eodag/commit/6af7ce499d00c32af3754ce30ebcb8fc392638a9
53+
.. _7e10e3a: https://github.com/CS-SI/eodag/commit/7e10e3aeb27220fd023f1cb00198ed2304ea3486
54+
.. _87ade04: https://github.com/CS-SI/eodag/commit/87ade04922356eb78cf1798a8fb81bcea8057595
55+
.. _b6ca196: https://github.com/CS-SI/eodag/commit/b6ca1968d60d6123e818f1eec06fc1fa386e465a
56+
.. _b785e7c: https://github.com/CS-SI/eodag/commit/b785e7c15c8dc60efbe0f38ac4d6487d8917b1aa
57+
.. _f296c52: https://github.com/CS-SI/eodag/commit/f296c526a803607e23c477a9da679b5f27e142dc
58+
59+
560
v3.2.0 (2025-04-01)
661
===================
762

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ An eodag instance can be exposed through a STAC compliant REST api from the comm
187187

188188
.. code-block:: bash
189189
190-
docker run -p 5000:5000 --rm csspace/eodag-server:3.2.0
190+
docker run -p 5000:5000 --rm csspace/eodag-server:3.3.0
191191
192192
You can also browse over your STAC API server using `STAC Browser <https://github.com/radiantearth/stac-browser>`_.
193193
Simply run:

charts/eodag-server/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
apiVersion: v2
2-
appVersion: 3.2.0
2+
appVersion: 3.3.0
33
dependencies:
44
- name: common
55
repository: oci://registry-1.docker.io/bitnamicharts
@@ -15,4 +15,4 @@ name: eodag-server
1515
sources:
1616
- https://github.com/CS-SI/eodag
1717
type: application
18-
version: 3.2.0
18+
version: 3.3.0

docs/stac_rest.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ available on `https://hub.docker.com/r/csspace/eodag-server <https://hub.docker.
115115

116116
.. code-block:: bash
117117
118-
$ docker run -p 5000:5000 --rm csspace/eodag-server:3.2.0
118+
$ docker run -p 5000:5000 --rm csspace/eodag-server:3.3.0
119119
120120
Example
121121
-------

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
33
build-backend = "setuptools.build_meta"
44

55
[tool.setuptools_scm]
6-
fallback_version = "3.2.1.dev0"
6+
fallback_version = "3.3.1.dev0"
77

88
[tool.coverage.report]
99
exclude_lines = [

0 commit comments

Comments
 (0)