Skip to content

Commit a7a14d3

Browse files
author
Vyacheslav
committed
update: update pack info
1 parent 86c94c8 commit a7a14d3

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

Src/Benchmarks/Program.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ static void Main(string[] args)
1010
BenchmarkRunner.Run<Queue.PrimitiveSimpleJob>();// 4 byte * Size
1111
BenchmarkRunner.Run<Queue.PrimitiveOptimalJob>();// 4 byte * Size
1212

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

2120
BenchmarkRunner.Run<Stack.ClassSimpleJob>();// 24 byte * Size
2221
BenchmarkRunner.Run<Stack.ClassOptimalJob>();// 24 byte * Size
23-
*/
2422
}
2523
}
2624
}

Src/StackMemoryCollections/StackMemoryCollections.csproj

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,16 +24,19 @@
2424
</ItemGroup>
2525
<PropertyGroup>
2626
<PackageId>StackMemoryCollections</PackageId>
27-
<PackageVersion>0.1.4.2</PackageVersion>
27+
<PackageVersion>0.2.0.0</PackageVersion>
2828
<Authors>Brevnov Vyacheslav Sergeevich</Authors>
2929
<RepositoryUrl>https://github.com/SoftStoneDevelop/StackMemoryCollections</RepositoryUrl>
3030
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
3131
<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>
3232
<PackageTags>collection, unsafe, memory, stack, list, queue, analysis, generator, wrapper, roslyn</PackageTags>
3333
<NoPackageAnalysis>true</NoPackageAnalysis>
34+
<AssetTargetFallback>net6.0,net7.0</AssetTargetFallback>
3435
<PackageLicenseFile>LICENSE</PackageLicenseFile>
3536
<PackageReleaseNotes>
36-
- Added TopFuture() and PushFuture() methods for Stack
37+
- Added supported Queue collection, for primitive types
38+
- Performance optimization
39+
- Bug fixes
3740
</PackageReleaseNotes>
3841
</PropertyGroup>
3942
<ItemGroup>

0 commit comments

Comments
 (0)