Skip to content

Commit

Permalink
update: update pack info
Browse files Browse the repository at this point in the history
  • Loading branch information
Vyacheslav committed Sep 3, 2022
1 parent 86c94c8 commit a7a14d3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 0 additions & 2 deletions Src/Benchmarks/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ static void Main(string[] args)
BenchmarkRunner.Run<Queue.PrimitiveSimpleJob>();// 4 byte * Size
BenchmarkRunner.Run<Queue.PrimitiveOptimalJob>();// 4 byte * Size

/*
//Stack
BenchmarkRunner.Run<Stack.PrimitiveSimpleJob>();// 4 byte * Size
BenchmarkRunner.Run<Stack.PrimitiveOptimalJob>();// 4 byte * Size
Expand All @@ -20,7 +19,6 @@ static void Main(string[] args)

BenchmarkRunner.Run<Stack.ClassSimpleJob>();// 24 byte * Size
BenchmarkRunner.Run<Stack.ClassOptimalJob>();// 24 byte * Size
*/
}
}
}
7 changes: 5 additions & 2 deletions Src/StackMemoryCollections/StackMemoryCollections.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,19 @@
</ItemGroup>
<PropertyGroup>
<PackageId>StackMemoryCollections</PackageId>
<PackageVersion>0.1.4.2</PackageVersion>
<PackageVersion>0.2.0.0</PackageVersion>
<Authors>Brevnov Vyacheslav Sergeevich</Authors>
<RepositoryUrl>https://github.com/SoftStoneDevelop/StackMemoryCollections</RepositoryUrl>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<Description>Fast unsafe collections for memory reuse by stack type. Adding elements without overhead when increasing Capacity. Can also be used in as classic collection with resizing or on a custom memory allocator. See collection descriptions and examples on GitHub.</Description>
<PackageTags>collection, unsafe, memory, stack, list, queue, analysis, generator, wrapper, roslyn</PackageTags>
<NoPackageAnalysis>true</NoPackageAnalysis>
<AssetTargetFallback>net6.0,net7.0</AssetTargetFallback>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageReleaseNotes>
- Added TopFuture() and PushFuture() methods for Stack
- Added supported Queue collection, for primitive types
- Performance optimization
- Bug fixes
</PackageReleaseNotes>
</PropertyGroup>
<ItemGroup>
Expand Down

0 comments on commit a7a14d3

Please sign in to comment.