Skip to content

Commit 054a48f

Browse files
authored
v1.2.0-beta
- Updated benchmarks with newest numbers - Updated version number - Preperation for source link support
1 parent 2d0bb51 commit 054a48f

File tree

7 files changed

+142
-139
lines changed

7 files changed

+142
-139
lines changed

.github/workflows/publish-to-nuget-org.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Restore dependencies
2222
run: dotnet restore
2323
- name: Build
24-
run: dotnet build -c Release --no-restore
24+
run: dotnet build -c Release --no-restore /p:ContinuousIntegrationBuild=true -p:IncludeSymbols=true -p=SymbolPackageFormat=snupkg
2525
- name: Test
2626
run: dotnet test -c Release --no-build --verbosity normal
2727
- name: upload

Akade.IndexedSet.Benchmarks/Akade.IndexedSet.Benchmarks.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<Nullable>enable</Nullable>
8+
<IsPackable>false</IsPackable>
89
</PropertyGroup>
910

1011
<ItemGroup>

Akade.IndexedSet/Akade.IndexedSet.csproj

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,22 @@
77
</PropertyGroup>
88

99
<PropertyGroup>
10-
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
11-
<GenerateDocumentationFile>True</GenerateDocumentationFile>
12-
<Version>1.1.0</Version>
10+
<Version>1.2.0-beta</Version>
1311
<Description>Provides an In-Memory data structure, the IndexedSet, that allows to easily add indices to allow efficient querying. Currently supports unique and non-unique indices, range indices as well as fuzzy string matching for single attributes, compound or computed keys.</Description>
14-
<Copyright>Copyright © Akade 2023</Copyright>
12+
<Copyright>Copyright © Akade 2024</Copyright>
1513
<Authors>Akade</Authors>
16-
<EnablePackageValidation>true</EnablePackageValidation>
17-
<RepositoryUrl>https://github.com/akade/Akade.IndexedSet</RepositoryUrl>
1814
<PackageLicenseExpression>MIT</PackageLicenseExpression>
15+
<RepositoryUrl>https://github.com/akade/Akade.IndexedSet</RepositoryUrl>
1916
<PackageTags>data structure;indices;range query;unique index;range index;non-unique index;multi-value;dictionary;collections;computed keys;fuzzy;fuzzy search;approximate string matching;search;concurrency;multiple keys; fast lookup;performance</PackageTags>
2017
<PackageReadmeFile>/README.md</PackageReadmeFile>
2118
</PropertyGroup>
19+
20+
<PropertyGroup>
21+
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
22+
<GenerateDocumentationFile>True</GenerateDocumentationFile>
23+
<EnablePackageValidation>true</EnablePackageValidation>
24+
<EmbedUntrackedSources>true</EmbedUntrackedSources>
25+
</PropertyGroup>
2226

2327
<ItemGroup>
2428
<None Include="..\README.md" Pack="true" PackagePath="\" />

Akade.IndexedSet/PublicAPI/PublicAPI.Shipped.txt

Lines changed: 36 additions & 38 deletions
Large diffs are not rendered by default.
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
Akade.IndexedSet.ExperimentalAttribute
2+
Akade.IndexedSet.ExperimentalAttribute.UrlFormat.get -> string?
3+
Akade.IndexedSet.ExperimentalAttribute.UrlFormat.set -> void
4+
override Akade.IndexedSet.ExperimentalAttribute.ToString() -> string!
Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +0,0 @@
1-
Akade.IndexedSet.ExperimentalAttribute.UrlFormat.get -> string?
2-
Akade.IndexedSet.ExperimentalAttribute.UrlFormat.set -> void
3-
override Akade.IndexedSet.ExperimentalAttribute.ToString() -> string!
4-
Akade.IndexedSet.ExperimentalAttribute

docs/Benchmarks.md

Lines changed: 90 additions & 90 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)