From caf71e47bf973e689ebfe7eedc07f89f1104b67e Mon Sep 17 00:00:00 2001 From: Fabian Neumann Date: Fri, 23 Aug 2024 19:37:23 +0200 Subject: [PATCH] prepare release v0.2.14 --- RELEASE_NOTES.rst | 21 ++++++++++++++++----- atlite/resource.py | 2 +- 2 files changed, 17 insertions(+), 6 deletions(-) diff --git a/RELEASE_NOTES.rst b/RELEASE_NOTES.rst index b348d026..fbbe5c21 100755 --- a/RELEASE_NOTES.rst +++ b/RELEASE_NOTES.rst @@ -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 ============== diff --git a/atlite/resource.py b/atlite/resource.py index fb165d95..72943277 100644 --- a/atlite/resource.py +++ b/atlite/resource.py @@ -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)