Skip to content

Commit cc626c4

Browse files
committed
Update changelog, bump version
1 parent 3cfe8ee commit cc626c4

File tree

6 files changed

+14
-9
lines changed

6 files changed

+14
-9
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,9 @@
11
[bumpversion]
2-
current_version = 2.0.0
2+
current_version = 2.0.1
33

44
[comment]
55
comment = The contents of this file cannot be merged with that of pyproject.toml until https://github.com/c4urself/bump2version/issues/42 is resolved
66

77
[bumpversion:file:era5cli/__version__.py]
88
search = __version__ = "{current_version}"
99
replace = __version__ = "{new_version}"
10-
11-
[bumpversion:file:CITATION.cff]
12-
search = version: "{current_version}"
13-
replace = version: "{new_version}"

CITATION.cff

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,4 +97,3 @@ license: Apache-2.0
9797
message: "If you use this software, please cite it using these metadata."
9898
repository-code: "https://github.com/ewatercycle/era5cli"
9999
title: era5cli
100-
version: "2.0.0"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
>
1919
> To continue using era5cli, you will need to re-register at ECMWF and get a new API key,
2020
> and transition to era5cli version 2. This can be installed with:
21-
> `pip install era5cli==2.0.0`
21+
> `pip install era5cli==2.0.1`
2222
2323
> [!WARNING]
2424
> netCDF files from the new Climate Data Store Beta are not formatted the same as the

docs/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## Unreleased
99

10+
# 2.0.1 - 2025-04-04
11+
12+
Changes since v2.0.0:
13+
14+
**Changed:**
15+
- Threads are set to 1 by default, as the new CDS is not faster if you use multiple threads.
16+
17+
**Fixed:**
18+
- The cdsapi changed how wants the request formatted for getting netCDF files, netCDF files weren't properly downloaded anymore.
19+
1020
# 2.0.0 - 2025-02-12
1121

1222
Changes since v1.4.2:

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ A command line interface to download ERA5 data from the [Copernicus Climate Data
1010

1111
To continue using era5cli, you will need to re-register at ECMWF and get a new API key,
1212
and transition to the era5cli v2 beta. This can be installed with:
13-
`pip install era5cli>=2.0.0`
13+
`pip install era5cli>=2.0.1`
1414

1515
???+ warning
1616
netCDF files from the new Climate Data Store Beta are not formatted the same as the

era5cli/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@
2626
"Bart Schilperoort",
2727
)
2828
__email__ = "[email protected]"
29-
__version__ = "2.0.0"
29+
__version__ = "2.0.1"

0 commit comments

Comments
 (0)