Skip to content

Commit 71069cb

Browse files
committed
bump to 6.0.0
1 parent 66064aa commit 71069cb

File tree

2 files changed

+19
-19
lines changed

2 files changed

+19
-19
lines changed

SpotifyAPI.Docs/docs/introduction.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,16 @@ This open source library for the Spotify Web API provides an easy to use interfa
99

1010
From version 6 onwards, the library was built with the following features included:
1111

12-
* ✅ Typed responses and requests to over 74 endpoints. Complete and always up to date.
13-
* ✅ Supports `.NET Standard 2.X`, which includes all major platforms, including mobile:
14-
* `.NET Framework`
15-
* `UWP`
16-
* `.NET Core`
17-
* `Xamarin.Forms`
18-
* ✅ Included `HTTPClient`, but feel free to bring your own!
19-
* ✅ Logging supported
20-
* ✅ Retry Handlers supported
21-
* ✅ Proxy support
22-
* ✅ Pagination support
23-
* ✅ All OAuth2 Authentications supported for use in `ASP .NET` **and** `CLI` apps
24-
* ✅ Modular structure, for easy unit testing
12+
- ✅ Typed responses and requests to over 74 endpoints. Complete and always up to date.
13+
- ✅ Supports `.NET 5.0` and `.NET Standard 2.X`, which includes all major platforms, including mobile:
14+
- `.NET Framework`
15+
- `UWP`
16+
- `.NET Core`
17+
- `Xamarin.Forms`
18+
- ✅ Included `HTTPClient`, but feel free to bring your own!
19+
- ✅ Logging supported
20+
- ✅ Retry Handlers supported
21+
- ✅ Proxy support
22+
- ✅ Pagination support
23+
- ✅ All OAuth2 Authentications supported for use in `ASP .NET` **and** `CLI` apps
24+
- ✅ Modular structure, for easy unit testing

SpotifyAPI.Docs/src/install_instructions.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,26 +4,26 @@ import Tabs from '@theme/Tabs';
44
import React from 'react';
55

66
// Will be removed after beta releases
7-
const VERSION = '6.0.0-beta.12';
7+
const VERSION = '6.0.0';
88

9-
const installCodeNuget = `Install-Package SpotifyAPI.Web -Version ${VERSION}
9+
const installCodeNuget = `Install-Package SpotifyAPI.Web
1010
# Optional Auth module, which includes an embedded HTTP Server for OAuth2
11-
Install-Package SpotifyAPI.Web.Auth -Version ${VERSION}
11+
Install-Package SpotifyAPI.Web.Auth
1212
`;
1313

1414
const installReference = `<PackageReference Include="SpotifyAPI.Web" Version="${VERSION}" />
1515
<!-- Optional Auth module, which includes an embedded HTTP Server for OAuth2 -->
1616
<PackageReference Include="SpotifyAPI.Web.Auth" Version="${VERSION}" />
1717
`;
1818

19-
const installCodeCLI = `dotnet add package SpotifyAPI.Web --version ${VERSION}
19+
const installCodeCLI = `dotnet add package SpotifyAPI.Web
2020
# Optional Auth module, which includes an embedded HTTP Server for OAuth2
21-
dotnet add package SpotifyAPI.Web.Auth --version ${VERSION}
21+
dotnet add package SpotifyAPI.Web.Auth
2222
`;
2323

2424
const InstallInstructions = () => {
2525
return (
26-
<div style={{ padding: '30px' }}>
26+
<div style={{ padding: '10px' }}>
2727
<Tabs
2828
defaultValue="cli"
2929
values={[

0 commit comments

Comments
 (0)