Skip to content

Shillelagh 1.2.27

Compare
Choose a tag to compare
@betodealmeida betodealmeida released this 10 Sep 19:05
· 2 commits to main since this release
90a3f4b

Small release fixing the Preset API. It also introduces the UPGRADE function, which can be used to upgrade the library from SQL:

πŸ€> SELECT VERSION();
VERSION()
----------------------
1.2.25 (apsw 3.45.3.0)
(1 row in 0.00s)

πŸ€> SELECT UPGRADE("1.2.26");
UPGRADE("1.2.26")
-----------------------------
Upgrade to 1.2.26 successful.
(1 row in 0.76s)

πŸ€> SELECT VERSION();
VERSION()
----------------------
1.2.26 (apsw 3.45.3.0)
(1 row in 0.00s)

πŸ€>