Skip to content

0.1.0

Compare
Choose a tag to compare
@github-actions github-actions released this 13 Jul 16:36
· 60 commits to main since this release

This release introduces the lockfile and the version command.

Lockfile

sqlpkg stores information about the installed packages in a special file (the lockfile) — sqlpkg.lock. If you're using a local repository, it's a good idea to commit sqlpkg.lock along with other code. This way, when you check out the code on another machine, you can install all the packages at once.

To install the packages listed in the lockfile, simply run install with no arguments:

sqlpkg install

sqlpkg will detect the lockfile (in the current folder or the user's home folder) and install all the packages listed in it.

If you are a 0.0.1 user, create a lockfile for already installed packages by running sqlpkg list.