Skip to content

Commit

Permalink
prepare release v0.2.14
Browse files Browse the repository at this point in the history
  • Loading branch information
fneum committed Aug 23, 2024
1 parent 0b0933f commit caf71e4
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 6 deletions.
21 changes: 16 additions & 5 deletions RELEASE_NOTES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,31 @@ Release Notes
#############


Upcoming Release
================
.. Upcoming Release
.. ================
- Adds option to toggle whether ERA5 downloads are requested in monthly or
Version 0.2.14
==============

* Compatibility with new CDS infrastructure for ERA5 cutouts. Update your API
key at https://cds-beta.climate.copernicus.eu/how-to-api and use the new API
endpoint ``https://cds-beta.climate.copernicus.eu/api`` in your
``~/.cdsapirc`` file. The old CDS infrastructure can still be accessed when
the ``~/.cdsapirc`` uses the old endpoint.

* Adds option to toggle whether ERA5 downloads are requested in monthly or
annual chunks with keyword argument ``cutout.prepare(monthly_requests=True)``.
The default is now annual requests. The monthly requests can also be posted
concurrently using ``cutout.prepare(monthly_requests=True,
concurrent_requests=True)``.

- Improved parallelization of ``atlite.convert.build_line_rating`` by adding
* Improved parallelization of ``atlite.convert.build_line_rating`` by adding
keyword arguments for ``dask.compute`` (``dask_kwargs={}``) and an option to
disable the progressbar (``show_progress=False``).

- Default to ``show_progress=False`` for performance reasons.
* Default to ``show_progress=False`` for performance reasons.

* Numpy version temporarily limited to <2.

Version 0.2.13
==============
Expand Down
2 changes: 1 addition & 1 deletion atlite/resource.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def get_windturbineconfig(turbine, add_cutout_windspeed=False):
if add_cutout_windspeed is False:
msg = (
"'add_cutout_windspeed' for wind turbine\npower curves will default to "
"True in atlite relase v0.2.13."
"True in atlite relase v0.2.15."
)
warnings.warn(msg, FutureWarning)

Expand Down

0 comments on commit caf71e4

Please sign in to comment.