Skip to content

Commit

Permalink
Releasing 6.2.3-beta: removing trimming, allowing passing on continue…
Browse files Browse the repository at this point in the history
…OnCapturedContext (contribution by c0nd3v), updated CONTRIBUTORS.md
  • Loading branch information
MarkCiliaVincenti committed Dec 2, 2023
1 parent 1819af4 commit b567142
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 8 deletions.
12 changes: 4 additions & 8 deletions AsyncKeyedLock/AsyncKeyedLock.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,22 +8,18 @@
<PackageProjectUrl>https://github.com/MarkCiliaVincenti/AsyncKeyedLock</PackageProjectUrl>
<Copyright>MIT</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Version>6.2.2</Version>
<Version>6.2.3-beta</Version>
<PackageIcon>logo.png</PackageIcon>
<PackageReleaseNotes>Fixed potential unnecessary slowdown.</PackageReleaseNotes>
<PackageReleaseNotes>Allowed passing on continueOnCapturedContext, defaulting to false.</PackageReleaseNotes>
<Description>An asynchronous .NET Standard 2.0 library that allows you to lock based on a key (keyed semaphores), limiting concurrent threads sharing the same key to a specified number, with optional pooling for reducing memory allocations.</Description>
<Copyright>© 2023 Mark Cilia Vincenti</Copyright>
<PackageTags>async,lock,key,keyed,semaphore,striped,dictionary,concurrentdictionary,pooling,duplicate,synchronization</PackageTags>
<RepositoryType>git</RepositoryType>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<AssemblyVersion>6.2.2.0</AssemblyVersion>
<FileVersion>6.2.2.0</FileVersion>
<AssemblyVersion>6.2.2.1</AssemblyVersion>
<FileVersion>6.2.2.1</FileVersion>
<PackageReadmeFile>README.md</PackageReadmeFile>
<IsPackable>true</IsPackable>
<IsTrimmable>true</IsTrimmable>
<EnableTrimAnalyzer>true</EnableTrimAnalyzer>
<PublishTrimmed>true</PublishTrimmed>
<TrimmerDefaultAction>link</TrimmerDefaultAction>
<EnforceCodeStyleInBuild>True</EnforceCodeStyleInBuild>
<EnableNETAnalyzers>True</EnableNETAnalyzers>
<AnalysisLevel>latest</AnalysisLevel>
Expand Down
1 change: 1 addition & 0 deletions CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@
* [Tobias "Syzuna" Teske](https://github.com/Syzuna) for fixing a critical bug when he should have been sleeping
* [Theodor Zoulias](https://github.com/theodorzoulias) for his valued help with race conditions
* [MagicAndre1981](https://github.com/MagicAndre1981) for enabling deterministic builds
* [c0nd3v](https://github.com/c0nd3v) for allowed passing on continueOnCapturedContext

0 comments on commit b567142

Please sign in to comment.