From b4d00cc695db048483d16f6cd76264ff3430ba09 Mon Sep 17 00:00:00 2001 From: Bjarke Berg Date: Wed, 3 Nov 2021 15:05:12 +0100 Subject: [PATCH 1/3] Bump version to 9.1.0-rc --- build/templates/UmbracoPackage/.template.config/template.json | 2 +- build/templates/UmbracoProject/.template.config/template.json | 2 +- src/Directory.Build.props | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/build/templates/UmbracoPackage/.template.config/template.json b/build/templates/UmbracoPackage/.template.config/template.json index 64785c0f59..fa60ddf1a9 100644 --- a/build/templates/UmbracoPackage/.template.config/template.json +++ b/build/templates/UmbracoPackage/.template.config/template.json @@ -24,7 +24,7 @@ "version": { "type": "parameter", "datatype": "string", - "defaultValue": "9.1.0", + "defaultValue": "9.1.0-rc", "description": "The version of Umbraco to load using NuGet", "replaces": "UMBRACO_VERSION_FROM_TEMPLATE" }, diff --git a/build/templates/UmbracoProject/.template.config/template.json b/build/templates/UmbracoProject/.template.config/template.json index 7e4e8afb27..63e1cbbac2 100644 --- a/build/templates/UmbracoProject/.template.config/template.json +++ b/build/templates/UmbracoProject/.template.config/template.json @@ -57,7 +57,7 @@ "version": { "type": "parameter", "datatype": "string", - "defaultValue": "9.1.0", + "defaultValue": "9.1.0-rc", "description": "The version of Umbraco to load using NuGet", "replaces": "UMBRACO_VERSION_FROM_TEMPLATE" }, diff --git a/src/Directory.Build.props b/src/Directory.Build.props index 5fb6242c02..f43ab94be5 100644 --- a/src/Directory.Build.props +++ b/src/Directory.Build.props @@ -6,7 +6,7 @@ 9.1.0 9.1.0 9.1.0 - 9.1.0 + 9.1.0-rc 9.0 en-US Umbraco CMS From 3b73a87a68cd3b9e0a89b70e5a649e7021fdfc7f Mon Sep 17 00:00:00 2001 From: Bjarke Berg Date: Wed, 3 Nov 2021 15:26:39 +0100 Subject: [PATCH 2/3] Bumped right info :'( --- src/Directory.Build.props | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Directory.Build.props b/src/Directory.Build.props index f43ab94be5..ec32e6fe33 100644 --- a/src/Directory.Build.props +++ b/src/Directory.Build.props @@ -5,8 +5,8 @@ 9.1.0 9.1.0 - 9.1.0 - 9.1.0-rc + 9.1.0-rc + 9.1.0 9.0 en-US Umbraco CMS From 7ffa46d4f2654633e8941e0e6337b7da181e01ba Mon Sep 17 00:00:00 2001 From: Bjarke Berg Date: Thu, 4 Nov 2021 07:55:51 +0100 Subject: [PATCH 3/3] Use specific version of docfx --- build/azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/azure-pipelines.yml b/build/azure-pipelines.yml index 582fadfc49..9197cc9ccb 100644 --- a/build/azure-pipelines.yml +++ b/build/azure-pipelines.yml @@ -541,7 +541,7 @@ stages: inputs: targetType: inline script: | - choco install docfx -y + choco install docfx --version=2.58.5 -y if ($lastexitcode -ne 0){ throw ("Error installing DocFX") }