Update SQLite3 Drivers

Update bundled drivers to version 1.2.4.
This commit is contained in:
Jacques Distler 2008-12-15 14:45:15 -06:00
parent 14561d998d
commit 65c08e1090
37 changed files with 7364 additions and 521 deletions

View file

@ -0,0 +1,14 @@
module SQLite3
module Version
MAJOR = 1
MINOR = 2
TINY = 4
STRING = [ MAJOR, MINOR, TINY ].join( "." )
#:beta-tag:
end
end