Skip to content

Commit df60c70

Browse files
Bump version to 0.2.0 for release
1 parent ba77371 commit df60c70

File tree

3 files changed

+19
-8
lines changed

3 files changed

+19
-8
lines changed

cheshire_cat_api/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"""
1515

1616

17-
__version__ = "0.0.61"
17+
__version__ = "0.2.0"
1818

1919
from cheshire_cat_api.cat_client import CatClient
2020
from cheshire_cat_api.utils import Settings, WebSocketSettings

pyproject.toml

Lines changed: 17 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,23 @@
11
[tool.poetry]
22
name = "cheshire_cat_api"
3-
version = "0.0.4"
4-
description = "😸 Cheshire-Cat API"
5-
authors = ["OpenAPI Generator Community <team@openapitools.org>"]
6-
license = "NoLicense"
3+
version = "0.2.0"
4+
description = "😸 Cheshire-Cat API Client"
5+
authors = ["Chesire Cat AI"]
6+
maintainers = [
7+
"Nicola Corbellini"
8+
]
9+
homepage = "https://cheshirecat.ai/"
10+
license = "GPL-3.0-only"
711
readme = "README.md"
8-
repository = "https://github.com/nicola-corbellini/test-api"
9-
keywords = ["OpenAPI", "OpenAPI-Generator", "😸 Cheshire-Cat API"]
12+
repository = "https://github.com/cheshire-cat-ai/cheshire-cat-api"
13+
keywords = ["OpenAPI", "Cheshire-Cat", "LLM", "Open Source"]
1014
include = ["cheshire_cat_api/py.typed"]
15+
classifiers = [
16+
"Topic :: Scientific/Engineering :: Artificial Intelligence",
17+
"Framework :: FastAPI",
18+
"Development Status :: 3 - Alpha"
19+
]
20+
# ADD DOCUMENTATION WITH URL
1121

1222
[tool.poetry.dependencies]
1323
python = "^3.7"
@@ -22,6 +32,7 @@ websocket-client= ">=1.6.1"
2232
pytest = ">=7.2.1"
2333
tox = ">=3.9.0"
2434
flake8 = ">=4.0.0"
35+
toml = ">=0.10.2"
2536

2637
[build-system]
2738
requires = ["setuptools"]

scripts/release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
set -e
44

5-
TAG=$(python -c 'from cheshire_cat_api import __version__; print("v" + __version__)')
5+
TAG=$(python -c 'import toml; t=toml.load("../pyproject.toml"); print(t["tool"]["poetry"]["version"])')
66

77
read -p "Creating new release for $TAG. Do you want to continue? [Y/n] " prompt
88

0 commit comments

Comments
 (0)