Skip to content

Commit

Permalink
Fix #168 (#169)
Browse files Browse the repository at this point in the history
* Pin cads api version to avoid things breaking

* Bump version number
  • Loading branch information
BSchilperoort authored Sep 20, 2024
1 parent 52a6a2d commit 159df61
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 2.0.0b1
current_version = 2.0.0b2

[comment]
comment = The contents of this file cannot be merged with that of pyproject.toml until https://github.com/c4urself/bump2version/issues/42 is resolved
Expand Down
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -97,4 +97,4 @@ license: Apache-2.0
message: "If you use this software, please cite it using these metadata."
repository-code: "https://github.com/ewatercycle/era5cli"
title: era5cli
version: "2.0.0b1"
version: "2.0.0b2"
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
>
> To continue using era5cli, you will need to re-register at ECMWF and get a new API key,
> and transition to the era5cli v2 beta. This can be installed with:
> `pip install era5cli==2.0.0b1`
> `pip install era5cli==2.0.0b2`
> [!WARNING]
> netCDF files from the new Climate Data Store Beta are not formatted the same as the
Expand Down
6 changes: 6 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

## 2.0.0b2 - 2024-09-20

**Fixed:**
- Pinned the version number of `cads-api-client` as its interface is unstable.


## 2.0.0b1 - 2024-08-30

**Changed:**
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ A command line interface to download ERA5 data from the [Copernicus Climate Data

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

???+ warning
netCDF files from the new Climate Data Store Beta are not formatted the same as the
Expand Down
2 changes: 1 addition & 1 deletion era5cli/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@
"Bart Schilperoort",
)
__email__ = "[email protected]"
__version__ = "2.0.0b1"
__version__ = "2.0.0b2"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ classifiers = [
]
dependencies = [
"cdsapi>=0.7.1",
"cads-api-client>=1.3",
"cads-api-client==1.3.0", # Pin because API is unstable: github.com/ecmwf-projects/cads-api-client/issues/81
"pathos",
"PTable",
"netCDF4"
Expand Down

0 comments on commit 159df61

Please sign in to comment.