Yelp.Api.Web 1.4.5

dotnet add package Yelp.Api.Web --version 1.4.5
NuGet\Install-Package Yelp.Api.Web -Version 1.4.5
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Yelp.Api.Web" Version="1.4.5" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Yelp.Api.Web --version 1.4.5
#r "nuget: Yelp.Api.Web, 1.4.5"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Yelp.Api.Web as a Cake Addin
#addin nuget:?package=Yelp.Api.Web&version=1.4.5

// Install Yelp.Api.Web as a Cake Tool
#tool nuget:?package=Yelp.Api.Web&version=1.4.5

A library to be used by websites to interact with Yelp Fusion (v3.0) API.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp1.1 is compatible.  netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.4.5 3,239 1/10/2019
1.4.4 967 11/2/2018
1.4.3 827 10/4/2018
1.4.1 808 10/1/2018
1.4.0 826 9/26/2018
1.3.4 876 9/12/2018
1.3.3 1,048 7/27/2017
1.3.2 953 7/16/2017
1.3.1 1,021 6/19/2017
1.3.0 1,194 6/19/2017

1.4.5 - Wednesday, Jan 9th, 2019
Possible Breaking Change - Yelp has removed the deprecated field zip_code and replaced it with postal_code.  This version correctly now uses postal_code and PostalCode.  This may break any of your code that still calls ZipCode, but that code will break when calling Yelp anyway.  Please update all references to PostalCode.

1.4.4 - Friday, Nov 2nd, 2018
Added new Yelp fields:
- Added string Id to the Review object.
- Added string[] PossibleLanguages to the ReviewResponse object.
- Added string Id and string ProfileUrl to the User object.

1.4.3 - Wednesday, Oct 3rd, 2018
Removed extra DLLs that would show up in projects that used this NuGet package.

1.4.2 - Tuesday, Oct 2nd, 2018
[Deleted] This was supposed to fix the extra DLLs but didn't.  Removed because it didn't provide anything new beyond 1.4.1.

1.4.1 - Monday, Oct 1st, 2018
Yelp has made the field that was previously known as Id, now a Business's Alias.  Id is now a unique, generated string that is machine readable, where Alias is the unique human readable, hypen-separated business name.  Alias has now been added to BusinessResponse and the GraphQL data.

1.4.0 - Tuesday, Sept 25th, 2018
- Fixed multithreading for GetBusinessAsyncInParallel and GetGraphQlInChunksAsyncInParallel so they actually send calls in parallel.  Consumer can also set how many threads they use, default is 2.
- Fixed GetGraphQlInChunksAsync so it actually makes calls in series as intended.
- Increased default size of businesses sent through GraphQl calls from 5 to 25 due to improvements to the Yelp API.  This can also be changed by the consumer.
- Calls to Yelp API now have mechanics to automatically retry if they fail due to endpoint flooding.  Use the ConnectionRetrySettings class to change these settings.
- This package will now throw AccessLimitExceptions if Yelp returns ACCESS_LIMIT_REACHED (for when you go over your daily amount of calls allowed).
- General clean up and bug fixes.
- Enhancements, clarifications, and fixes to the Example project.

1.3.4 - Tuesday, Sept 11th, 2018
Pull latest changes from base project so Yelp Authentication works again.  Minor example project clean up.

1.3.3 - Thursday, July 27th, 2017
Fix bug that was making GraphQL calls with wrong Content-Type.  Updates to Yelp.Api require Content-Type: application/graphql now when making GraphQL calls.

1.3.2 - Friday, July 15th, 2017
Fix bug when converting businesses that have null coordinates from Yelp.

1.3.1 - Monday, June 19, 2017
Added IsSpecialFlag to BusinessResponse model. (Removed in v1.3.4)

1.3.0 - Monday, June 19, 2017
First release as a Web version of Yelp.Api.