diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 21fe54b..f25da77 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,14 +1,14 @@ [bumpversion] -current_version = 0.0.0-alpha +current_version = 0.0.1-alpha parse = (?P\d+)\.(?P\d+)\.(?P\d+)(-(?P.*))? -serialize = +serialize = {major}.{minor}.{patch}-{release} tag_name = v{new_major}.{new_minor}.{new_patch}-{new_release} commit = True tag = True [bumpversion:part:release] -values = +values = alpha beta rc diff --git a/dtcli/__init__.py b/dtcli/__init__.py index 55ed15f..eb8a3da 100644 --- a/dtcli/__init__.py +++ b/dtcli/__init__.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = "0.0.0-alpha" +__version__ = "0.0.1-alpha" diff --git a/pyproject.toml b/pyproject.toml index f9c0bd9..cd568b4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ packages = [ {include = "dtcli"}, ] readme = "README.md" -version = "0.0.0-alpha" +version = "0.0.1-alpha" [tool.poetry.dependencies] PyYAML = "^5.4.1"