How to upgrade to a newer version of SpecSync
If you are using an older version of SpecSync it is recommended to upgrade it to a more recent version. If your version is older than 365 days, SpecSync will even remind you for upgrading.
Before upgrade we recommend checking the Changelog page and choose the version you would like to upgrade to. Upgrading to a newer update version (only the third number is different, e.g. 3.2.9
to 3.2.12
) can be done without planning and consideration, but for upgrading to a newer main version you should check the Changelog for compatibility notes. You can find more details about the release types in the Release Model and Roadmap page.
The upgrade procedure depends on how you have installed SpecSync. In this list we provide the upgrade procedure for the most common installation options. In the examples we assume you want to upgrade to v3.2.12, but you need to replace this with the version you have chosen.
If you have installed SpecSync as a .NET Tool (you use it with the
dotnet specsync
command), you need to invokedotnet tool update SpecSync.AzureDevOps --version 3.2.12
from your local repository. Make sure you commit the changes to thedotnet-tools.json
file and ask your team mates to perform adotnet tool restore
command after they pulled your change.If you have installed as a .NET Console App (you invoke
SpecSync4AzureDevOps.cmd
or you invokeSpecSync4AzureDevOps.exe
from thetools
folder of the SpecSync.AzureDevOps.Console NuGet package), you need to update the NuGet package withdotnet add package SpecSync.AzureDevOps --version 3.2.12
or from the Package Manager in Visual Studio.If you use the SpecSync official Docker image (you invoke a
docker run
command for thespecsolutions/specsync
,specsolutions/specsync:3.2
orspecsolutions/specsync:3.2.9
image), you need to either use a specific tag (e.g.specsolutions/specsync:3.2.12
) or make sure you have the latest version of the image using thedocker pull specsolutions/specsync:3.2
command.
If you have problems or questions related to upgrading SpecSync, please contact support.
Last updated