Skip to content

Commit e42d7a0

Browse files
author
Vyacheslav
committed
update:
+ update nuget + update pack info - remove test attribute
1 parent 4ea85dd commit e42d7a0

File tree

4 files changed

+7
-12
lines changed

4 files changed

+7
-12
lines changed

Src/Benchmarks/Benchmark.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</PropertyGroup>
77
<ItemGroup>
88
<PackageReference Include="BenchmarkDotNet" Version="0.13.2" />
9-
<PackageReference Include="StackMemoryCollections.Attributes" Version="0.7.0" />
9+
<PackageReference Include="StackMemoryCollections.Attributes" Version="1.0.0" />
1010
</ItemGroup>
1111
<ItemGroup>
1212
<ProjectReference Include="..\StackMemoryCollections\StackMemoryCollections.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="False" />

Src/StackMemoryCollections/StackMemoryCollections.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,16 +24,16 @@
2424
</ItemGroup>
2525
<PropertyGroup>
2626
<PackageId>StackMemoryCollections</PackageId>
27-
<PackageVersion>0.1.1.0-beta</PackageVersion>
27+
<PackageVersion>0.1.2.0-beta</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.</Description>
32-
<PackageTags>collection, unsafe collection, memory, stack memory, stack, list, queue, analysis</PackageTags>
32+
<PackageTags>collection, unsafe, memory, stack, list, queue, analysis, generator, wrapper</PackageTags>
3333
<NoPackageAnalysis>true</NoPackageAnalysis>
3434
<PackageLicenseFile>LICENSE</PackageLicenseFile>
3535
<PackageReleaseNotes>
36-
- Support nullable properties/variables and added check IsNull method
36+
- Added generation mode: treat classes as references(IntPtr)
3737
</PackageReleaseNotes>
3838
</PropertyGroup>
3939
<ItemGroup>

Src/Tests/TestStruct.cs

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
using StackMemoryCollections.Attibutes;
2-
using System;
1+
using StackMemoryAttributes.Attributes;
2+
using StackMemoryCollections.Attibutes;
33

44
namespace Tests
55
{
@@ -28,11 +28,6 @@ TestClass testClass
2828
public TestClass TestClass2;
2929
}
3030

31-
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)]
32-
public class AsPointerAttribute : Attribute
33-
{
34-
}
35-
3631
[GenerateHelper]
3732
[GenerateStack]
3833
[GenerateWrapper]

Src/Tests/Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<PackageReference Include="NUnit" Version="3.13.3" />
99
<PackageReference Include="NUnit3TestAdapter" Version="4.2.1" />
1010
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.3.0" />
11-
<PackageReference Include="StackMemoryCollections.Attributes" Version="0.7.0" />
11+
<PackageReference Include="StackMemoryCollections.Attributes" Version="1.0.0" />
1212
</ItemGroup>
1313
<ItemGroup>
1414
<ProjectReference Include="..\StackMemoryCollections\StackMemoryCollections.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="False" />

0 commit comments

Comments
 (0)