Changelog¶
Note: Trying to follow the essentials of Keep a Changelog and SemVer.
0.7.2¶
Added¶
--dry-runoption to thegccommand, allowing you to preview which caches would be removed without actually deleting them.
Changed¶
- Improved dry-run output for
linkcommand to clearly indicate it's a preview with "Would execute:" prefix. - Enhanced documentation across README, installation, and usage pages with clearer explanations, more examples, and better coverage of
XDG_DATA_HOMEsupport.
0.7.1¶
Added¶
- Global
--cache-rootoption to the mainuvlinkcommand, enabling custom cache locations for all subcommands.
0.7.0¶
Added¶
uvlink link [VENV_TYPE]accepts an optional folder name so you can create links such as.venv-prodor.pdm-venvwithout extra commands.
Changed¶
venv_typeinput is now validated as a portable filename (no path separators, limited to alphanumerics plus._-, no trailing dots/spaces), preventing cache corruption from illegal names.
0.6.0¶
Changed¶
- Breaking: Cache directories now include the virtualenv type in the folder name (for example
myapp-dr3ag8a41ro9-.venv/.venv), allowing multiple venv types per project to be supported in the future without collisions. Remove old caches and rerunuvlink linkto migrate. uvlink lsnow displays the cache identifier with the environment type suffix, making it easier to see which cache belongs to which env flavor.
0.5.0¶
Added¶
- Each cached project's
project.jsonnow records the uvlink version that created it, making it easier to audit caches after upgrades.
Changed¶
uvlink lsrenders with a minimal table style so the listing is easier to read in plain terminals.
0.4.1¶
Added¶
uvlink --version/uvlink -Vflag prints the installed tool version and exits.
Changed¶
- CLI help banner now shows the current uvlink version for quick reference.
0.4.0¶
Changed¶
- Breaking: Restructured cache directory from
~/.local/share/uvlink/cache/venv/<project>-<hash>/venvto~/.local/share/uvlink/cache/<project>-<hash>/.venv. Existing caches created with prior versions should be deleted and recreated. - Simplified symlink creation—removed unnecessary hidden-folder logic.
0.3.0¶
Added¶
uvlink gccommand to clean up orphaned cache entries.uvlink lscommand to list the linking status of venvs.
0.2.0¶
Added¶
- Initial public release of
uvlink linkcommand to create the cache of venv in the~/.local/share/uvlink/cache/...directory and create symlinks.venvin the original project dir pointing to the cached venv.- Documentation covering installation via
uv toolandpip, along with guidance for typical usage patterns.