diff --git a/INSTALL.md b/INSTALL.md index ac265a62..44571bfa 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -9,7 +9,7 @@ The following are dynamically installed at VeriSol runtime (the first time only) ### Install from nuget.org Install to the **global** dotnet CLI tools cache so that you can run command `VeriSol` from anywhere: ``` -dotnet tool install VeriSol --version 0.1.3-alpha --global +dotnet tool install VeriSol --version 0.1.5-alpha --global ``` ### Install from sources @@ -27,7 +27,7 @@ dotnet build Sources\VeriSol.sln Install to the **global** dotnet CLI tools cache so that you can run command `VeriSol` from anywhere: ``` -dotnet tool install VeriSol --version 0.1.3-alpha --global --add-source %VERISOL_PATH%/nupkg/ +dotnet tool install VeriSol --version 0.1.5-alpha --global --add-source %VERISOL_PATH%/nupkg/ ``` You may need to uninstall a previous version first. Use `dotnet tool uninstall --global VeriSol` first then. diff --git a/Sources/VeriSol.props b/Sources/VeriSol.props index e263bc3d..45c4f271 100644 --- a/Sources/VeriSol.props +++ b/Sources/VeriSol.props @@ -11,7 +11,7 @@ - 0.1.3-alpha + 0.1.5-alpha \ No newline at end of file diff --git a/azure-pipelines.yml b/azure-pipelines.yml index bb296663..2855727f 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -28,7 +28,7 @@ steps: inputs: command: custom custom: 'tool' - arguments: 'install --tool-path $(Build.SourcesDirectory)/Tools/ VeriSol --version 0.1.3-alpha --add-source $(Build.SourcesDirectory)/nupkg/' + arguments: 'install --tool-path $(Build.SourcesDirectory)/Tools/ VeriSol --version 0.1.5-alpha --add-source $(Build.SourcesDirectory)/nupkg/' - pwsh: | $(Build.SourcesDirectory)/Tools/VeriSol $(Build.SourcesDirectory)/Test/regressions/DAO-Sim-Buggy.sol Mallory /tryProof /tryRefutation:10 /printTransactionSequence @@ -44,7 +44,7 @@ steps: inputs: command: custom custom: 'tool' - arguments: 'install --tool-path $(Build.SourcesDirectory)/Tools/ SolToBoogieTest --version 0.1.3-alpha --add-source $(Build.SourcesDirectory)/nupkg/' + arguments: 'install --tool-path $(Build.SourcesDirectory)/Tools/ SolToBoogieTest --version 0.1.5-alpha --add-source $(Build.SourcesDirectory)/nupkg/' - pwsh: '$(Build.SourcesDirectory)/Tools/VeriSolRegressionRunner $(Build.SourcesDirectory)/Test/' displayName: 'Run regression tests'