From 03e64358cde8e7cf1fafef4cef10cf7de2845fee Mon Sep 17 00:00:00 2001 From: Dave Tillman Date: Sun, 24 Sep 2017 08:18:08 -0600 Subject: [PATCH] Update version to 2.0.0 --- scripts/appveyor_install.cmd | 2 +- scripts/travis_install.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/appveyor_install.cmd b/scripts/appveyor_install.cmd index 02fe074..5394b49 100644 --- a/scripts/appveyor_install.cmd +++ b/scripts/appveyor_install.cmd @@ -4,7 +4,7 @@ dotnet --info SET CI_BUILD=%APPVEYOR% SET number=00000%APPVEYOR_BUILD_NUMBER% -SET STEELTOE_VERSION=1.1.0 +SET STEELTOE_VERSION=2.0.0 SET STEELTOE_VERSION_SUFFIX=%APPVEYOR_REPO_BRANCH%-%number:~-5% IF NOT "%APPVEYOR_REPO_TAG_NAME%"=="" SET STEELTOE_VERSION_SUFFIX=%APPVEYOR_REPO_TAG_NAME:~6,5% IF NOT "%STEELTOE_VERSION_SUFFIX%"=="" ( diff --git a/scripts/travis_install.sh b/scripts/travis_install.sh index f5cc785..c529b4e 100755 --- a/scripts/travis_install.sh +++ b/scripts/travis_install.sh @@ -3,7 +3,7 @@ dotnet --info export CI_BUILD=True -export STEELTOE_VERSION=1.1.0 +export STEELTOE_VERSION=2.0.0 if [[ "$TRAVIS_BRANCH" == "master" ]]; then cp config/nuget-master.config ./nuget.config ; fi if [[ "$TRAVIS_BRANCH" == "dev" ]]; then cp config/nuget-dev.config ./nuget.config ; fi if [[ "${TRAVIS_BRANCH:0:3}" == "upd" ]]; then cp config/nuget-update.config ./nuget.config ; fi