diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 9614abe..6c657f1 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,9 +1,9 @@ [bumpversion] -current_version = 1.0.1 +current_version = 1.0.2 commit = True tag = True parse = (?P\d+)\.(?P\d+)\.(?P\d+) -serialize = +serialize = {major}.{minor}.{patch} [bumpversion:file:pyproject.toml] @@ -13,8 +13,3 @@ replace = version = "{new_version}" [bumpversion:file:chatlab/_version.py] search = __version__ = "{current_version}" replace = __version__ = "{new_version}" - -# For use during pre-releases -# [bumpversion:file:CHANGELOG.md] -# search = ## [{current_version}] -# replace = ## [{new_version}] diff --git a/chatlab/_version.py b/chatlab/_version.py index 5c4105c..7863915 100644 --- a/chatlab/_version.py +++ b/chatlab/_version.py @@ -1 +1 @@ -__version__ = "1.0.1" +__version__ = "1.0.2" diff --git a/pyproject.toml b/pyproject.toml index eab5463..e927991 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool] [tool.poetry] name = "chatlab" -version = "1.0.1" +version = "1.0.2" homepage = "https://github.com/rgbkrk/chatlab" description = "Chat Plugin Experiments, Simplified. Create agents and give them superpowers in your notebooks." authors = ["Kyle Kelley "]