Skip to content

Commit 57f0250

Browse files
committed
Update versions: package to 0.6.0, C to 0.21.0 #20
1 parent 629c330 commit 57f0250

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

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.18.1" # see objectbox/c.py required_version
9+
version = "v0.21.0" # 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
@@ -31,7 +31,7 @@
3131
]
3232

3333
# Python binding version
34-
version = Version(0, 5, 0)
34+
version = Version(0, 6, 0)
3535

3636

3737
def version_info():

objectbox/c.py

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

2525
# Version of the library used by the binding. This version is checked at runtime to ensure binary compatibility.
2626
# Don't forget to update download-c-lib.py when upgrading to a newer version.
27-
required_version = "0.18.1"
27+
required_version = "0.21.0"
2828

2929

3030
def shlib_name(library: str) -> str:

tests/test_basics.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@
1717

1818
def test_version():
1919
assert objectbox.version.major == 0 # update for major version changes
20-
assert objectbox.version.minor >= 5
20+
assert objectbox.version.minor >= 6
2121

2222
assert objectbox.version_core.major == 0 # update for major version changes
23-
assert objectbox.version_core.minor >= 18
23+
assert objectbox.version_core.minor >= 21
2424

2525
info = objectbox.version_info()
2626
print("\nVersion found:", info)

0 commit comments

Comments
 (0)