mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-23 22:56:25 +00:00
bump to 6.0.0
This commit is contained in:
parent
66064aa0f5
commit
71069cb53b
@ -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
|
||||||
|
@ -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={[
|
||||||
|
Loading…
Reference in New Issue
Block a user