File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 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-alpha5 " # see objectbox/c.py required_version
9+ version = "v4.0.0 " # see objectbox/c.py required_version
1010variant = 'objectbox' # or 'objectbox-sync'
1111
1212base_url = "https://github.com/objectbox/objectbox-c/releases/download/"
Original file line number Diff line number Diff line change 2727
2828# Version of the library used by the binding. This version is checked at runtime to ensure binary compatibility.
2929# Don't forget to update download-c-lib.py when upgrading to a newer version.
30- required_version = "0.21 .0"
30+ required_version = "4.0 .0"
3131
3232
3333def shlib_name (library : str ) -> str :
Original file line number Diff line number Diff line change @@ -19,8 +19,8 @@ def test_version():
1919 assert objectbox .version .major == 0 # update for major version changes
2020 assert objectbox .version .minor >= 6
2121
22- assert objectbox .version_core .major == 0 # update for major version changes
23- assert objectbox .version_core .minor >= 21
22+ assert objectbox .version_core .major == 4 # update for major version changes
23+ assert objectbox .version_core .minor >= 0
2424
2525 info = objectbox .version_info ()
2626 print ("\n Version found:" , info )
You can’t perform that action at this time.
0 commit comments