diff --git a/.latest-versions.yml b/.latest-versions.yml index 7ed4517..ea4aca6 100644 --- a/.latest-versions.yml +++ b/.latest-versions.yml @@ -1,7 +1,6 @@ --- github_packages: neovim: latest - lunarvim: latest diff_so_fancy: latest bat: latest zoxide: latest diff --git a/docs-web/docs/main/customization/20-versions.md b/docs-web/docs/main/customization/20-versions.md index 58f637b..b412dd9 100644 --- a/docs-web/docs/main/customization/20-versions.md +++ b/docs-web/docs/main/customization/20-versions.md @@ -3,7 +3,7 @@ :::warning[Latest defaults] Please note that all software versions since 2.0.0 are set to 'latest', including `master` branch. -If you need to have particular software version static, add it to [overrides.yml](./10-variables) +If you need to have particular software version static, add it to [overrides.yml](./variables) This change ensure seamless support for both Ubuntu 22 and 24 ::: @@ -21,3 +21,9 @@ Also, it saves/updates them in `./current-versions.yml`. This file is added to `
If you use `master` branch (which has all the versions set to `latest`), and you want stability for particular component, you can copy any of those outputs and add them to your `ansible/vars/overrides.yml` so this version will be used for any subsequent runs. + +:::note[Overriding one version in a group] +For overriding only one package in a group (e.g `github_packages`), you need to set your desired version, but all the others need to be set to `latest`. In some cases `latest` can be something different (like `master` or `main`). You can find the reference in `latest-versions.yml`. + +Please also note, that not every software version supports `latest`. Some need to be set explicitly. See `ansible/roles/software/vars/main.yml` for all static vars. +:::