diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 8c6f6be..66f2685 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,59 +1,11 @@ [bumpversion] -current_version = 1.0.0-alpha.34 +current_version = 1.0.0 commit = True tag = True -parse = (?P\d+)\.(?P\d+)\.(?P\d+)(-(?P[a-zA-Z]+))?(\.(?P\d+))? -serialize = - {major}.{minor}.{patch}-{prerelease}.{release} +parse = (?P\d+)\.(?P\d+)\.(?P\d+) +serialize = {major}.{minor}.{patch} -[bumpversion:part:prerelease] -optional_value = gamma -values = - alpha - beta - gamma - -[bumpversion:part:release] -first_value = 1 -values = - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - 11 - 12 - 13 - 14 - 15 - 16 - 17 - 18 - 19 - 20 - 21 - 22 - 23 - 24 - 25 - 26 - 27 - 28 - 29 - 30 - 31 - 32 - 33 - 34 - 35 - 36 - [bumpversion:file:pyproject.toml] search = version = "{current_version}" replace = version = "{new_version}" diff --git a/CHANGELOG.md b/CHANGELOG.md index 83fa41c..9f3fd0d 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.34] +## [1.0.0] ### Added diff --git a/README.md b/README.md index 9743833..7ced28e 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ ChatLab is a Python package that makes it easy to experiment with OpenAI's chat Best yet, it's interactive in the notebook! -⚠️ NOTE: The following docs are for the `1.0.0-alpha` release and `main`. They will not work with the `0.16.0` release. Check out [chatlab.dev](https://chatlab.dev) for the latest docs. For the pre-release, check out [pre.chatlab.dev](https://pre.chatlab.dev). +⚠️ NOTE: The following docs are for `main`. They may not work with the `1.0.0` release. Check out [chatlab.dev](https://chatlab.dev) for the latest docs. For the pre-release, check out [pre.chatlab.dev](https://pre.chatlab.dev). ## Introduction diff --git a/chatlab/_version.py b/chatlab/_version.py index 351f7cc..5becc17 100644 --- a/chatlab/_version.py +++ b/chatlab/_version.py @@ -1 +1 @@ -__version__ = "1.0.0-alpha.34" +__version__ = "1.0.0" diff --git a/pyproject.toml b/pyproject.toml index fd35c4b..b37f612 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool] [tool.poetry] name = "chatlab" -version = "1.0.0-alpha.34" +version = "1.0.0" homepage = "https://github.com/rgbkrk/chatlab" description = "Chat Plugin Experiments, Simplified. Create agents and give them superpowers in your notebooks." authors = ["Kyle Kelley "]