From a66c72b36089a2eb7c4b48dcb66ab5f49ae86976 Mon Sep 17 00:00:00 2001 From: climada Date: Wed, 14 Feb 2024 12:02:25 +0000 Subject: [PATCH] 'Automated update v4.1.0' --- CHANGELOG.md | 12 ++---------- climada/_version.py | 2 +- doc/misc/README.md | 11 +++++++---- setup.py | 2 +- 4 files changed, 11 insertions(+), 16 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d1b26707f..78cd1cb13 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,8 @@ # Changelog -## Unreleased +## 4.1.0 -Release date: YYYY-MM-DD - -Code freeze date: YYYY-MM-DD - -### Description +Release date: 2024-02-14 ### Dependency Changes @@ -62,10 +58,6 @@ Removed: - Set `nodefaults` in Conda environment specs because `defaults` are not compatible with conda-forge [#845](https://github.com/CLIMADA-project/climada_python/pull/845) - Avoid redundant calls to `np.unique` in `Impact.impact_at_reg` [#848](https://github.com/CLIMADA-project/climada_python/pull/848) -### Deprecated - -### Removed - ## 4.0.1 Release date: 2023-09-27 diff --git a/climada/_version.py b/climada/_version.py index d9cfbbef3..fa721b497 100644 --- a/climada/_version.py +++ b/climada/_version.py @@ -1 +1 @@ -__version__ = '4.0.2-dev' +__version__ = '4.1.0' diff --git a/doc/misc/README.md b/doc/misc/README.md index d39bb6700..58d907595 100644 --- a/doc/misc/README.md +++ b/doc/misc/README.md @@ -17,13 +17,14 @@ This is the Python (3.9+) version of CLIMADA - please see [here](https://github. ## Getting started CLIMADA runs on Windows, macOS and Linux. -The released versions of the CLIMADA core can be installed directly through Anaconda: +The released versions of CLIMADA are available from [conda-forge](https://anaconda.org/conda-forge/climada). +Use the [Mamba](https://mamba.readthedocs.io/en/latest/) package manager to install it: ```shell -conda install -c conda-forge climada +mamba install -c conda-forge climada ``` -It is **highly recommended** to install CLIMADA into a **separate** Anaconda environment. +It is **highly recommended** to install CLIMADA into a **separate** Conda environment. See the [installation guide](https://climada-python.readthedocs.io/en/latest/guide/install.html) for further information. Follow the [tutorials](https://climada-python.readthedocs.io/en/stable/tutorial/1_main_climada.html) in a Jupyter Notebook to see what can be done with CLIMADA and how. @@ -57,7 +58,9 @@ Please use the following logo if you are presenting results obtained with or thr ## Contributing -See the [Contribution Guide](CONTRIBUTING.md). +We welcome any contribution to this repository, be it bugfixes and other code changes and additions, documentation improvements, or tutorial updates. + +If you would like to contribute, please refer to our [Contribution Guide](CONTRIBUTING.md). ## Versioning diff --git a/setup.py b/setup.py index 36dafad9f..ef7fbb0ae 100644 --- a/setup.py +++ b/setup.py @@ -33,7 +33,7 @@ setup( name='climada', - version='4.0.2-dev', + version='4.1.0', description='CLIMADA in Python',