Skip to content

Commit 6d116a8

Browse files
Bump version to v0.0.63 for release
1 parent 5aa098b commit 6d116a8

File tree

4 files changed

+24
-28
lines changed

4 files changed

+24
-28
lines changed

.github/workflows/python.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,3 +39,24 @@ jobs:
3939
uses: abatilo/actions-poetry@v2
4040
- name: Install dependencies
4141
run: poetry install
42+
43+
publish:
44+
strategy:
45+
fail-fast: false
46+
matrix:
47+
python-version: [ 3.10 ]
48+
os: [ ubuntu-latest, macos-latest, windows-latest ]
49+
runs-on: ${{ matrix.os }}
50+
steps:
51+
- uses: actions/checkout@v2
52+
- uses: actions/setup-python@v2
53+
with:
54+
python-version: ${{ matrix.python-version }}
55+
- name: Run image
56+
uses: abatilo/actions-poetry@v2.0.0
57+
- name: Publish
58+
env:
59+
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
60+
run: |
61+
poetry config pypi-token.pypi $PYPI_TOKEN
62+
poetry publish --build

.github/workflows/release.yml

Lines changed: 0 additions & 27 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## Unreleased
99

10+
## [v0.0.63](https://github.com/cheshire-cat-ai/ccat-api-py/releases/tag/v0.0.63) - 2023-07-28
11+
1012
## [v0.0.62](https://github.com/cheshire-cat-ai/ccat-api-py/releases/tag/v0.0.62) - 2023-07-28
1113

1214
## [v0.0.61S](https://github.com/cheshire-cat-ai/ccat-api-py/releases/tag/v0.0.61S) - 2023-07-28

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.62"
17+
__version__ = "0.0.63"
1818

1919
# import apis into sdk package
2020
from cheshire_cat_api.api.memory_api import MemoryApi

0 commit comments

Comments
 (0)