Skip to content

Commit

Permalink
v3.0.1.2 (#18)
Browse files Browse the repository at this point in the history
* Create FUNDING.yml

* Update README.md

* 8 feat response caching (#12)

* WIP

* response caching

* Correct one of the identical expressions on both sides of operator '&&'

* remove casting from dispose call on the memorycache

* 6 naming violation (#13)

* fix naming violation

* replace duplicate code with call

* 7 feat optional automatic rate limiting (#14)

* adds rate limiting

* remove the rate limiting from tests since it is not built into the library

* remove unnecessary async

* change field to property

* remove useless variable initialization

* make RateLimitTimer readonly

* dispose of objects

* don't cache /ping

* up the UpdateAt refresh wait time to 5 minutes since it was failing through no fault of our own

* update note

* fix issue with semaphore disposal

* update readme

* bump version 3.0.1.1

* Update README.md

* Update README.md

* Update publish_dotnet.yml

* update

* WTF (#16) (#17)

* Create FUNDING.yml

* Update README.md

* 8 feat response caching (#12)

* WIP

* response caching

* Correct one of the identical expressions on both sides of operator '&&'

* remove casting from dispose call on the memorycache

* 6 naming violation (#13)

* fix naming violation

* replace duplicate code with call

* 7 feat optional automatic rate limiting (#14)

* adds rate limiting

* remove the rate limiting from tests since it is not built into the library

* remove unnecessary async

* change field to property

* remove useless variable initialization

* make RateLimitTimer readonly

* dispose of objects

* don't cache /ping

* up the UpdateAt refresh wait time to 5 minutes since it was failing through no fault of our own

* update note

* fix issue with semaphore disposal

* update readme

* bump version 3.0.1.1

* Update README.md

* Update README.md

* Update publish_dotnet.yml

* update

* default Enabled to true

* bump version 3.0.1.2

* Update CoinGeckoAPI.csproj
  • Loading branch information
ByronAP authored Dec 15, 2022
1 parent 64a4f8d commit 0f96004
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions CoinGeckoAPI/CoinGeckoAPI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
<TargetFramework>netstandard2.0</TargetFramework>
<GenerateDocumentationFile>False</GenerateDocumentationFile>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Version>3.0.1.1</Version>
<Version>3.0.1.2</Version>
<Authors>ByronAP</Authors>
<AssemblyVersion>3.0.1.1</AssemblyVersion>
<FileVersion>3.0.1.1</FileVersion>
<AssemblyVersion>3.0.1.2</AssemblyVersion>
<FileVersion>3.0.1.2</FileVersion>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<EnableNETAnalyzers>True</EnableNETAnalyzers>
<AnalysisLevel>latest-recommended</AnalysisLevel>
Expand All @@ -19,7 +19,7 @@
<RepositoryType>git</RepositoryType>
<Copyright>Copyright © 2022 ByronAP, CoinGecko. All rights reserved.</Copyright>
<PackageReleaseNotes>See: https://github.com/ByronAP/CoinGeckoApi/releases </PackageReleaseNotes>
<PackageTags>coingecko,coin gecko,coingecko api,api,bitcoin,eth,etherium,atom,cosmos,btc,usdt,teather,bnb,usdc,doge,dogecoin,xrp,ripple,ltc,litecoin,crypto,market,price,market cap,cryptocurrencies</PackageTags>
<PackageTags>coingecko,coin-gecko,coingecko-api,api,bitcoin,eth,ethereum,atom,cosmos,btc,usdt,tether,bnb,usdc,doge,dogecoin,xrp,ripple,ltc,litecoin,crypto,market,price,market-cap,marketcap,cryptocurrencies</PackageTags>
<Description>CoinGecko API Client Library</Description>
<Title>CoinGecko API Client Library</Title>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion CoinGeckoAPI/MemCache.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace CoinGeckoAPI
{
internal class MemCache : IDisposable
{
internal bool Enabled { get; set; }
internal bool Enabled { get; set; } = true;

private readonly ILogger _logger;
private readonly List<string> _keys;
Expand Down

0 comments on commit 0f96004

Please sign in to comment.