From 5ac1077cfe25c2958ee67ab563d99352d0df816c Mon Sep 17 00:00:00 2001 From: Jonas Dellinger Date: Mon, 15 Jun 2020 22:37:11 +0200 Subject: [PATCH] prepare beta.5 --- SpotifyAPI.Docs/src/install_instructions.js | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/SpotifyAPI.Docs/src/install_instructions.js b/SpotifyAPI.Docs/src/install_instructions.js index 6af2a254..19340590 100644 --- a/SpotifyAPI.Docs/src/install_instructions.js +++ b/SpotifyAPI.Docs/src/install_instructions.js @@ -3,22 +3,25 @@ import CodeBlock from '@theme/CodeBlock' import Tabs from '@theme/Tabs' import TabItem from '@theme/TabItem' +// Will be removed after beta releases +const VERSION = '6.0.0-beta.5'; + const installCodeNuget = - `Install-Package SpotifyAPI.Web -Version 6.0.0-beta.4 + `Install-Package SpotifyAPI.Web -Version ${VERSION} # Optional Auth module, which includes an embedded HTTP Server for OAuth2 -Install-Package SpotifyAPI.Web.Auth -Version 6.0.0-beta.4 +Install-Package SpotifyAPI.Web.Auth -Version ${VERSION} `; const installReference = - ` + ` - + `; const installCodeCLI = - `dotnet add package SpotifyAPI.Web --version 6.0.0-beta.4 + `dotnet add package SpotifyAPI.Web --version ${VERSION} # Optional Auth module, which includes an embedded HTTP Server for OAuth2 -dotnet add package SpotifyAPI.Web.Auth --version 6.0.0-beta.4 +dotnet add package SpotifyAPI.Web.Auth --version ${VERSION} `; const InstallInstructions = () => {