From 5a235cad46689972325807152bb6a1610dad8dcb Mon Sep 17 00:00:00 2001 From: Corey Butler Date: Wed, 8 Mar 2017 10:26:21 -0600 Subject: [PATCH] Version bump to support mirror fixes and rollback support. --- build.bat | 2 +- nvm.iss | 2 +- src/nvm.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/build.bat b/build.bat index 3979be9..8b72537 100644 --- a/build.bat +++ b/build.bat @@ -4,7 +4,7 @@ SET ORIG=%CD% REM SET GOPATH=%CD%\src SET GOBIN=%CD%\bin SET GOARCH=386 -SET version=1.1.2 +SET version=1.1.3 REM Get the version number from the setup file REM for /f "tokens=*" %%i in ('findstr /n . %INNOSETUP% ^| findstr ^4:#define') do set L=%%i diff --git a/nvm.iss b/nvm.iss index 541d089..c0c4668 100644 --- a/nvm.iss +++ b/nvm.iss @@ -1,7 +1,7 @@ #define MyAppName "NVM for Windows" #define MyAppShortName "nvm" #define MyAppLCShortName "nvm" -#define MyAppVersion "1.1.1" +#define MyAppVersion "1.1.3" #define MyAppPublisher "Ecor Ventures LLC" #define MyAppURL "http://github.com/coreybutler/nvm" #define MyAppExeName "nvm.exe" diff --git a/src/nvm.go b/src/nvm.go index 5914a36..5cb68f5 100644 --- a/src/nvm.go +++ b/src/nvm.go @@ -16,7 +16,7 @@ import ( ) const ( - NvmVersion = "1.1.2" + NvmVersion = "1.1.3" ) type Environment struct { -- GitLab