diff --git a/docs/conf.py b/docs/conf.py index e120983..d9ae2f9 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -18,7 +18,7 @@ project = "pyGAUL" author = "Pierrick Rambaud" copyright = f"2020-{datetime.now().year}, {author}" -release = "0.3.2" +release = "0.3.3" # -- General configuration ----------------------------------------------------- extensions = [ diff --git a/pygaul/__init__.py b/pygaul/__init__.py index d83ada0..a0bca1e 100644 --- a/pygaul/__init__.py +++ b/pygaul/__init__.py @@ -16,7 +16,7 @@ import pandas as pd from deprecated.sphinx import deprecated, versionadded -__version__ = "0.3.2" +__version__ = "0.3.3" __author__ = "Pierrick Rambaud" __email__ = "pierrick.rambaud49@gmail.com" diff --git a/pyproject.toml b/pyproject.toml index e7971e4..76917e1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "pygaul" -version = "0.3.2" +version = "0.3.3" description = "Easy access to administrative boundary defined by FAO GAUL from a Python script." keywords = ["skeleton", "Python"] classifiers = [ @@ -81,7 +81,7 @@ exclude = ["docs*", "tests*"] [tool.commitizen] tag_format = "v$major.$minor.$patch$prerelease" update_changelog_on_bump = false -version = "0.3.2" +version = "0.3.3" version_files = [ "pyproject.toml:version", "pygaul/__init__.py:__version__",