bump to 6.0.0

This commit is contained in:
Jonas Dellinger 2020-11-14 13:30:59 +01:00
parent 66064aa0f5
commit 71069cb53b
2 changed files with 19 additions and 19 deletions

View File

@ -9,16 +9,16 @@ This open source library for the Spotify Web API provides an easy to use interfa
From version 6 onwards, the library was built with the following features included: From version 6 onwards, the library was built with the following features included:
* ✅ Typed responses and requests to over 74 endpoints. Complete and always up to date. - ✅ Typed responses and requests to over 74 endpoints. Complete and always up to date.
* ✅ Supports `.NET Standard 2.X`, which includes all major platforms, including mobile: - ✅ Supports `.NET 5.0` and `.NET Standard 2.X`, which includes all major platforms, including mobile:
* `.NET Framework` - `.NET Framework`
* `UWP` - `UWP`
* `.NET Core` - `.NET Core`
* `Xamarin.Forms` - `Xamarin.Forms`
* ✅ Included `HTTPClient`, but feel free to bring your own! - ✅ Included `HTTPClient`, but feel free to bring your own!
* ✅ Logging supported - ✅ Logging supported
* ✅ Retry Handlers supported - ✅ Retry Handlers supported
* ✅ Proxy support - ✅ Proxy support
* ✅ Pagination support - ✅ Pagination support
* ✅ All OAuth2 Authentications supported for use in `ASP .NET` **and** `CLI` apps - ✅ All OAuth2 Authentications supported for use in `ASP .NET` **and** `CLI` apps
* ✅ Modular structure, for easy unit testing - ✅ Modular structure, for easy unit testing

View File

@ -4,11 +4,11 @@ import Tabs from '@theme/Tabs';
import React from 'react'; import React from 'react';
// Will be removed after beta releases // Will be removed after beta releases
const VERSION = '6.0.0-beta.12'; const VERSION = '6.0.0';
const installCodeNuget = `Install-Package SpotifyAPI.Web -Version ${VERSION} const installCodeNuget = `Install-Package SpotifyAPI.Web
# Optional Auth module, which includes an embedded HTTP Server for OAuth2 # Optional Auth module, which includes an embedded HTTP Server for OAuth2
Install-Package SpotifyAPI.Web.Auth -Version ${VERSION} Install-Package SpotifyAPI.Web.Auth
`; `;
const installReference = `<PackageReference Include="SpotifyAPI.Web" Version="${VERSION}" /> const installReference = `<PackageReference Include="SpotifyAPI.Web" Version="${VERSION}" />
@ -16,14 +16,14 @@ const installReference = `<PackageReference Include="SpotifyAPI.Web" Version="${
<PackageReference Include="SpotifyAPI.Web.Auth" Version="${VERSION}" /> <PackageReference Include="SpotifyAPI.Web.Auth" Version="${VERSION}" />
`; `;
const installCodeCLI = `dotnet add package SpotifyAPI.Web --version ${VERSION} const installCodeCLI = `dotnet add package SpotifyAPI.Web
# Optional Auth module, which includes an embedded HTTP Server for OAuth2 # Optional Auth module, which includes an embedded HTTP Server for OAuth2
dotnet add package SpotifyAPI.Web.Auth --version ${VERSION} dotnet add package SpotifyAPI.Web.Auth
`; `;
const InstallInstructions = () => { const InstallInstructions = () => {
return ( return (
<div style={{ padding: '30px' }}> <div style={{ padding: '10px' }}>
<Tabs <Tabs
defaultValue="cli" defaultValue="cli"
values={[ values={[