From e25b698ac41f63b62237be67dd9d3abebc714e01 Mon Sep 17 00:00:00 2001 From: Stefano Lottini Date: Sat, 17 Feb 2024 15:26:54 +0100 Subject: [PATCH] ready for release 0.1.5 --- CHANGES.txt | 4 +++- README.md | 4 +++- setup.py | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index 5a9fd4b..2403390 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -7,9 +7,11 @@ Add asyncio's a* methods to the table interface: aann_search, ametric_ann_search afind_entries, afind_and_delete_entries Add explicit async_setup parameter to table constructors -CI/CD (with testing on Astra DB) bugfix: type of kwargs/pargs in most calls bugfix: type of input for [check_]resolve_session +repo housekeeping: + CI/CD (with testing on Astra DB) + removed branch 'dev' from git flow v 0.1.4 ======= diff --git a/README.md b/README.md index c73eec8..1057335 100644 --- a/README.md +++ b/README.md @@ -67,10 +67,12 @@ catch versions-specific issues - Bump version in setup.py - Add to `CHANGES.txt` - Commit the very code that will be built: +- `git tag v; git push origin v` ``` +rm dist/cassio* make build -twine upload dist/* # (login to PyPI ...) +twine upload dist/cassio* # (login to PyPI ...) ``` ### Testing diff --git a/setup.py b/setup.py index 9c20f00..109569c 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name="cassio", - version="0.1.4", + version="0.1.5", author="Stefano Lottini", author_email="stefano.lottini@datastax.com", package_dir={"": "src"},