Install previous version of the CLI

Hi, my project runs a 2025.1.x version and for some reason I have installed the newest CLI version v2025.2.0. Yet my project is all bothering me with errors about entities and access. Would there be a way to easily install the 2025.1.11 version?

I believe you can do the following:

With homebrew (MacOs)

# You have installed 2025.2.0 as the latest
brew install NoumenaDigital/tools/npl
# This should output "NPL CLI 2025.2.0"
npl version

# Step 1: Create a local tap
brew tap-new myuser/old
# Step 2: Extract older version (here 2025.1.11) to your local tap
brew extract --version=2025.1.11 noumenadigital/tools/npl myuser/old
# Step 3: Install older version
brew install myuser/old/npl@2025.1.11
# Step 4: Follow guidance to force-update the symlink
brew link --overwrite npl@2025.1.11
# Step 5: Check installed formulae and symlinked version - output should be "NPL CLI 2025.1.11"
brew list --formula | grep npl
npl version

To revert to the latest version

# Relink the latest version
brew unlink npl@2025.1.11 && brew link npl
# Should return "NPL CLI 2025.2.0"
npl version