From a9d2f2ca9ce0088d8cf7d801fb5b86cf5b269c4e Mon Sep 17 00:00:00 2001 From: Kyle Kelley Date: Sun, 5 Nov 2023 14:18:56 -0800 Subject: [PATCH] =?UTF-8?q?Bump=20version:=201.0.0-alpha.32=20=E2=86=92=20?= =?UTF-8?q?1.0.0-alpha.33?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 8 ++++---- CHANGELOG.md | 2 +- chatlab/_version.py | 2 +- pyproject.toml | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 55fbad2..34c4215 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,22 +1,22 @@ [bumpversion] -current_version = 1.0.0-alpha.32 +current_version = 1.0.0-alpha.33 commit = True tag = True parse = (?P\d+)\.(?P\d+)\.(?P\d+)(-(?P[a-zA-Z]+))?(\.(?P\d+))? -serialize = +serialize = {major}.{minor}.{patch}-{prerelease}.{release} {major}.{minor}.{patch} [bumpversion:part:prerelease] optional_value = gamma -values = +values = alpha beta gamma [bumpversion:part:release] first_value = 1 -values = +values = 1 2 3 diff --git a/CHANGELOG.md b/CHANGELOG.md index 57637a4..c3c6985 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -## [1.0.0-alpha.32] +## [1.0.0-alpha.33] ### Added diff --git a/chatlab/_version.py b/chatlab/_version.py index b2a47c1..b974103 100644 --- a/chatlab/_version.py +++ b/chatlab/_version.py @@ -1 +1 @@ -__version__ = "1.0.0-alpha.32" +__version__ = "1.0.0-alpha.33" diff --git a/pyproject.toml b/pyproject.toml index f338af8..a391000 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool] [tool.poetry] name = "chatlab" -version = "1.0.0-alpha.32" +version = "1.0.0-alpha.33" homepage = "https://github.com/rgbkrk/chatlab" description = "Chat Plugin Experiments, Simplified. Create agents and give them superpowers in your notebooks." authors = ["Kyle Kelley "]