Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Set version to 2.2.0 #977

Merged
merged 5 commits into from
Feb 2, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -158,11 +158,11 @@ authors:
"orcid": "https://orcid.org/0000-0003-0590-7843"

cff-version: "1.0.3"
date-released: 2020-10-12
date-released: 2021-2-8
doi: "10.5281/zenodo.3387139"
license: "Apache-2.0"
message: "If you use this software, please cite it using these metadata."
repository-code: "https://github.com/ESMValGroup/ESMValCore/"
title: ESMValCore
version: "v2.1.0"
version: "v2.2.0"
...
4 changes: 2 additions & 2 deletions doc/contributing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ Follow these steps to create a new conda package:
conda package
- If the build was successful, upload the package to the esmvalgroup
conda channel, e.g.
``anaconda upload --user esmvalgroup /path/to/conda/conda-bld/noarch/esmvalcore-2.1.0-py_0.tar.bz2``.
``anaconda upload --user esmvalgroup /path/to/conda/conda-bld/noarch/esmvalcore-2.2.0-py_0.tar.bz2``.

8. Create and upload the PyPI package
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Expand All @@ -376,7 +376,7 @@ Follow these steps to create a new Python package:
- Build the package:
``python3 -m pep517.build --source --binary --out-dir dist/ .``
This command should generate two files in the ``dist`` directory, e.g.
``ESMValCore-2.1.0-py3-none-any.whl`` and ``ESMValCore-2.1.0.tar.gz``.
``ESMValCore-2.2.0-py3-none-any.whl`` and ``ESMValCore-2.2.0.tar.gz``.
- Upload the package:
``python3 -m twine upload dist/*``
You will be prompted for an API token if you have not set this up
Expand Down
2 changes: 1 addition & 1 deletion esmvalcore/_version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""ESMValCore version."""
__version__ = '2.1.0'
__version__ = '2.2.0'
2 changes: 1 addition & 1 deletion package/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# conda build package -c conda-forge -c esmvalgroup

# Package version number
{% set version = "2.1.0" %}
{% set version = "2.2.0" %}

package:
name: esmvalcore
Expand Down