Skip to content

Commit 5ac1077

Browse files
committed
prepare beta.5
1 parent df009e0 commit 5ac1077

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

SpotifyAPI.Docs/src/install_instructions.js

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,22 +3,25 @@ import CodeBlock from '@theme/CodeBlock'
33
import Tabs from '@theme/Tabs'
44
import TabItem from '@theme/TabItem'
55

6+
// Will be removed after beta releases
7+
const VERSION = '6.0.0-beta.5';
8+
69
const installCodeNuget =
7-
`Install-Package SpotifyAPI.Web -Version 6.0.0-beta.4
10+
`Install-Package SpotifyAPI.Web -Version ${VERSION}
811
# Optional Auth module, which includes an embedded HTTP Server for OAuth2
9-
Install-Package SpotifyAPI.Web.Auth -Version 6.0.0-beta.4
12+
Install-Package SpotifyAPI.Web.Auth -Version ${VERSION}
1013
`;
1114

1215
const installReference =
13-
`<PackageReference Include="SpotifyAPI.Web" Version="6.0.0-beta.4" />
16+
`<PackageReference Include="SpotifyAPI.Web" Version="${VERSION}" />
1417
<!-- Optional Auth module, which includes an embedded HTTP Server for OAuth2 -->
15-
<PackageReference Include="SpotifyAPI.Web.Auth" Version="6.0.0-beta.4" />
18+
<PackageReference Include="SpotifyAPI.Web.Auth" Version="${VERSION}" />
1619
`;
1720

1821
const installCodeCLI =
19-
`dotnet add package SpotifyAPI.Web --version 6.0.0-beta.4
22+
`dotnet add package SpotifyAPI.Web --version ${VERSION}
2023
# Optional Auth module, which includes an embedded HTTP Server for OAuth2
21-
dotnet add package SpotifyAPI.Web.Auth --version 6.0.0-beta.4
24+
dotnet add package SpotifyAPI.Web.Auth --version ${VERSION}
2225
`;
2326

2427
const InstallInstructions = () => {

0 commit comments

Comments
 (0)