SQLite Forum

historic version dowload
Login

historic version dowload

(1) By anonymous on 2020-12-13 01:53:37 [link] [source]

The "chronology" page at www.sqlite.org/chronology.html lists all 310
historic versions over the past two decades.

Are you able to point to a location where source code could be found for
each version, "complete" and "amalgamated"?

(2) By Richard Hipp (drh) on 2020-12-13 02:16:16 in reply to 1 [link] [source]

Steps:

  1. Click on the date of the release on the chronology page. This will take you to timeline view in the Fossil version control system with the specific version of SQLite highlighted.

  2. Click on the hash identifier following the "check-in:" label for the highlighted check-in. This will take you to the "/info" page for that check-in.

  3. On the /info page, beside the "Downloads:" label, there are links to download the complete source code as either a tarball, ZIP archive, or SQL archive. Choose your favorite.

(3) By Warren Young (wyoung) on 2020-12-13 05:37:37 in reply to 1 [source]

Alternately, starting from a Fossil clone of the SQLite source repo, give commands like fossil up version-3.30.0.

You can get a complete list of such tags by saying

  fossil tag list | grep ^version-

The prior link guides you to making amalgamation builds and such from the source tree checkout.