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 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
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 3131]
3232
3333# Python binding version
34- version = Version (0 , 5 , 0 )
34+ version = Version (0 , 6 , 0 )
3535
3636
3737def version_info ():
Original file line number Diff line number Diff line change 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
3030def shlib_name (library : str ) -> str :
Original file line number Diff line number Diff line change 1717
1818def 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 ("\n Version found:" , info )
You can’t perform that action at this time.
0 commit comments