diff --git a/.bumpversion.toml b/.bumpversion.toml index bc6eaee..88b343b 100644 --- a/.bumpversion.toml +++ b/.bumpversion.toml @@ -1,5 +1,5 @@ [tool.bumpversion] -current_version = "0.1.0" +current_version = "0.2.0" parse = "(?P\\d+)\\.(?P\\d+)\\.(?P\\d+)" serialize = ["{major}.{minor}.{patch}"] search = "{current_version}" @@ -7,12 +7,12 @@ replace = "{new_version}" regex = false ignore_missing_version = false ignore_missing_files = false -tag = false +tag = true sign_tags = false tag_name = "v{new_version}" tag_message = "Bump version: {current_version} → {new_version}" allow_dirty = false -commit = false +commit = true message = "Bump version: {current_version} → {new_version}" commit_args = "" diff --git a/oda_reader/__init__.py b/oda_reader/__init__.py index 3dc1f76..d3ec452 100644 --- a/oda_reader/__init__.py +++ b/oda_reader/__init__.py @@ -1 +1 @@ -__version__ = "0.1.0" +__version__ = "0.2.0" diff --git a/pyproject.toml b/pyproject.toml index 92490ad..869f6ea 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "oda_reader" -version = "0.1.0" +version = "0.2.0" description = "A simple package to import ODA data using the OECD Data API" authors = ["Jorge Rivera"] license = "MIT"