File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Expand file tree Collapse file tree 4 files changed +5
-5
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.18.1 " # see objectbox/c.py required_version
9
+ version = "v0.21.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 31
31
]
32
32
33
33
# Python binding version
34
- version = Version (0 , 5 , 0 )
34
+ version = Version (0 , 6 , 0 )
35
35
36
36
37
37
def version_info ():
Original file line number Diff line number Diff line change 24
24
25
25
# Version of the library used by the binding. This version is checked at runtime to ensure binary compatibility.
26
26
# 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 "
28
28
29
29
30
30
def shlib_name (library : str ) -> str :
Original file line number Diff line number Diff line change 17
17
18
18
def test_version ():
19
19
assert objectbox .version .major == 0 # update for major version changes
20
- assert objectbox .version .minor >= 5
20
+ assert objectbox .version .minor >= 6
21
21
22
22
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
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