Skip to content

Commit

Permalink
Bump version: 0.0.8 → 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ificiana committed Sep 8, 2022
1 parent ec68fce commit a41c881
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
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 = "remagic"
version = "0.0.8"
version = "0.1.0"
description = "Work with RegEx with relative ease"
authors = ["ificiana <[email protected]>"]
license = "MIT License"
Expand Down
2 changes: 1 addition & 1 deletion remagic/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Implements RegEx abstraction logic, for easy working with RegEx in Python.
"""
__title__ = "remagic"
__version__ = "0.0.8"
__version__ = "0.1.0"
__author__ = "ificiana"
__license__ = "MIT License"
__copyright__ = "Copyright 2022 ificiana"
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[bumpversion]
commit = True
tag = True
current_version = 0.0.8
current_version = 0.1.0
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+))?
serialize =
{major}.{minor}.{patch}
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

setuptools.setup(
name="remagic",
version="0.0.8",
version="0.1.0",
author="Ificiana",
author_email="[email protected]",
packages=["remagic"],
Expand Down

0 comments on commit a41c881

Please sign in to comment.