Skip to content

Commit

Permalink
Release 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rgbkrk committed Nov 7, 2023
1 parent 841bba3 commit b97f591
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 55 deletions.
54 changes: 3 additions & 51 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,59 +1,11 @@
[bumpversion]
current_version = 1.0.0-alpha.34
current_version = 1.0.0
commit = True
tag = True
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(-(?P<prerelease>[a-zA-Z]+))?(\.(?P<release>\d+))?
serialize =
{major}.{minor}.{patch}-{prerelease}.{release}
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\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}"
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion chatlab/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.0.0-alpha.34"
__version__ = "1.0.0"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <rgbkrk@gmail.com>"]
Expand Down

0 comments on commit b97f591

Please sign in to comment.