Skip to content

Commit

Permalink
tag
Browse files Browse the repository at this point in the history
  • Loading branch information
jm-rivera committed May 5, 2024
1 parent 2966230 commit 3f8a75e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .bumpversion.toml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
[tool.bumpversion]
current_version = "0.1.0"
current_version = "0.2.0"
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
serialize = ["{major}.{minor}.{patch}"]
search = "{current_version}"
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 = ""

Expand Down
2 changes: 1 addition & 1 deletion oda_reader/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.1.0"
__version__ = "0.2.0"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down

0 comments on commit 3f8a75e

Please sign in to comment.