mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-23 14:46:26 +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:
|
||||
|
||||
* ✅ 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:
|
||||
* `.NET Framework`
|
||||
* `UWP`
|
||||
* `.NET Core`
|
||||
* `Xamarin.Forms`
|
||||
* ✅ Included `HTTPClient`, but feel free to bring your own!
|
||||
* ✅ Logging supported
|
||||
* ✅ Retry Handlers supported
|
||||
* ✅ Proxy support
|
||||
* ✅ Pagination support
|
||||
* ✅ All OAuth2 Authentications supported for use in `ASP .NET` **and** `CLI` apps
|
||||
* ✅ Modular structure, for easy unit testing
|
||||
- ✅ Typed responses and requests to over 74 endpoints. Complete and always up to date.
|
||||
- ✅ Supports `.NET 5.0` and `.NET Standard 2.X`, which includes all major platforms, including mobile:
|
||||
- `.NET Framework`
|
||||
- `UWP`
|
||||
- `.NET Core`
|
||||
- `Xamarin.Forms`
|
||||
- ✅ Included `HTTPClient`, but feel free to bring your own!
|
||||
- ✅ Logging supported
|
||||
- ✅ Retry Handlers supported
|
||||
- ✅ Proxy support
|
||||
- ✅ Pagination support
|
||||
- ✅ All OAuth2 Authentications supported for use in `ASP .NET` **and** `CLI` apps
|
||||
- ✅ Modular structure, for easy unit testing
|
||||
|
@ -4,11 +4,11 @@ import Tabs from '@theme/Tabs';
|
||||
import React from 'react';
|
||||
|
||||
// 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
|
||||
Install-Package SpotifyAPI.Web.Auth -Version ${VERSION}
|
||||
Install-Package SpotifyAPI.Web.Auth
|
||||
`;
|
||||
|
||||
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}" />
|
||||
`;
|
||||
|
||||
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
|
||||
dotnet add package SpotifyAPI.Web.Auth --version ${VERSION}
|
||||
dotnet add package SpotifyAPI.Web.Auth
|
||||
`;
|
||||
|
||||
const InstallInstructions = () => {
|
||||
return (
|
||||
<div style={{ padding: '30px' }}>
|
||||
<div style={{ padding: '10px' }}>
|
||||
<Tabs
|
||||
defaultValue="cli"
|
||||
values={[
|
||||
|
Loading…
Reference in New Issue
Block a user