Skip to content

Commit 631840d

Browse files
committed
0.7.0a11 with objectbox-c v0.21.1-alpha4
Also, improved `make publish` to provide token user and display a hint
1 parent f214a34 commit 631840d

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

Makefile

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,5 +63,10 @@ clean: ## Clean build artifacts
6363
rm -rf *.egg-info
6464

6565
publish: ## Publish the package built by `make build`
66-
set -e ; \
67-
${PYTHON} -m twine upload --verbose dist/objectbox*.whl
66+
set -e
67+
@echo "****************************************************************"
68+
@echo ">>> Please enter the API token when asked for a password. <<<"
69+
@echo ">>> The API token starts with the prefix 'pypi-'. <<<"
70+
@echo ">>> See https://pypi.org/help/#apitoken for details. <<<"
71+
@echo "****************************************************************"
72+
${PYTHON} -m twine upload -u "__token__" --verbose dist/objectbox*.whl

download-c-lib.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# Script used to download objectbox-c shared libraries for all supported platforms. Execute by running `make get-lib`
77
# on first checkout of this repo and any time after changing the objectbox-c lib version.
88

9-
version = "v0.21.1-alpha3" # see objectbox/c.py required_version
9+
version = "v0.21.1-alpha4" # see objectbox/c.py required_version
1010
variant = 'objectbox' # or 'objectbox-sync'
1111

1212
base_url = "https://github.com/objectbox/objectbox-c/releases/download/"

objectbox/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
]
3535

3636
# Python binding version
37-
version = Version(0, 7, 0, alpha=10)
37+
version = Version(0, 7, 0, alpha=11)
3838

3939

4040
def version_info():

0 commit comments

Comments
 (0)