File tree 3 files changed +4
-4
lines changed
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 6
6
# Script used to download objectbox-c shared libraries for all supported platforms. Execute by running `make get-lib`
7
7
# on first checkout of this repo and any time after changing the objectbox-c lib version.
8
8
9
- version = "v0.21.1-alpha5 " # see objectbox/c.py required_version
9
+ version = "v4.0.0 " # see objectbox/c.py required_version
10
10
variant = 'objectbox' # or 'objectbox-sync'
11
11
12
12
base_url = "https://github.com/objectbox/objectbox-c/releases/download/"
Original file line number Diff line number Diff line change 27
27
28
28
# Version of the library used by the binding. This version is checked at runtime to ensure binary compatibility.
29
29
# 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"
31
31
32
32
33
33
def shlib_name (library : str ) -> str :
Original file line number Diff line number Diff line change @@ -19,8 +19,8 @@ def test_version():
19
19
assert objectbox .version .major == 0 # update for major version changes
20
20
assert objectbox .version .minor >= 6
21
21
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
24
24
25
25
info = objectbox .version_info ()
26
26
print ("\n Version found:" , info )
You can’t perform that action at this time.
0 commit comments