Skip to content

Commit

Permalink
Release version 0.10.3
Browse files Browse the repository at this point in the history
  • Loading branch information
mikapfl committed Jan 3, 2025
1 parent 2796361 commit aebe2ac
Show file tree
Hide file tree
Showing 10 changed files with 14 additions and 11 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@
Changelog
=========

0.10.3 (2025-01-03)
-------------------
* Dropped support for Python 3.9 and 3.10.
* Added support for Python 3.12 and 3.13.
* Introduced minimum supported versions of dependencies.
* Fixed minimum dependencies for Python 3.13.
* Improved the documentation for the deployment process
* Added the category M.3.C.45.AG to the IPCC2006_PRIMAP categorisation

0.10.2 (2024-10-23)
-------------------
* Add a method to create a Conversion object from csv
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ release: venv dist ## package and upload a release
dist: clean-build venv ## builds source and wheel package
# because we update the citation info after releasing on github and zenodo but
# before building for pypi, we need to force the correct version.
SETUPTOOLS_SCM_PRETEND_VERSION=0.10.2 venv/bin/python -m build
SETUPTOOLS_SCM_PRETEND_VERSION=0.10.3 venv/bin/python -m build

install: clean ## install the package to the active Python's site-packages
python setup.py install
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -78,5 +78,5 @@ Citation
If you use this library and want to cite it, please cite it as:

Mika Pflüger, Annika Günther, Johannes Gütschow, and Robert Gieseke. (2024-10-23).
primap-community/climate_categories: climate_categories Version 0.10.2.
primap-community/climate_categories: climate_categories Version 0.10.3.
Zenodo. https://doi.org/10.5281/zenodo.13982829
3 changes: 0 additions & 3 deletions changelog_unreleased/166.trivial.rst

This file was deleted.

1 change: 0 additions & 1 deletion changelog_unreleased/167.improvement.rst

This file was deleted.

1 change: 0 additions & 1 deletion changelog_unreleased/169.improvement.rst

This file was deleted.

1 change: 0 additions & 1 deletion changelog_unreleased/175.trivial.rst

This file was deleted.

2 changes: 1 addition & 1 deletion climate_categories/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

__author__ = """Mika Pflüger"""
__email__ = "mika.pflueger@climate-resource.com"
__version__ = "0.10.2"
__version__ = "0.10.3"

import importlib
import importlib.resources
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = climate_categories
version = 0.10.2
version = 0.10.3
author = Mika Pflüger
author_email = mika.pflueger@climate-resource.com
description = Commonly used codes, categories, terminologies, and nomenclatures used in climate policy analysis as a Python package.
Expand Down
2 changes: 1 addition & 1 deletion tbump.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
github_url = "https://github.com/primap-community/climate_categories/"

[version]
current = "0.10.2"
current = "0.10.3"

# Example of a semver regexp.
# Make sure this matches current_version before
Expand Down

0 comments on commit aebe2ac

Please sign in to comment.