Skip to content

Commit

Permalink
v1.2.0-beta
Browse files Browse the repository at this point in the history
- Updated benchmarks with newest numbers
- Updated version number
- Preperation for source link support
  • Loading branch information
akade authored May 15, 2024
1 parent 2d0bb51 commit 054a48f
Show file tree
Hide file tree
Showing 7 changed files with 142 additions and 139 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish-to-nuget-org.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build -c Release --no-restore
run: dotnet build -c Release --no-restore /p:ContinuousIntegrationBuild=true -p:IncludeSymbols=true -p=SymbolPackageFormat=snupkg
- name: Test
run: dotnet test -c Release --no-build --verbosity normal
- name: upload
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
</PropertyGroup>

<ItemGroup>
Expand Down
16 changes: 10 additions & 6 deletions Akade.IndexedSet/Akade.IndexedSet.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,22 @@
</PropertyGroup>

<PropertyGroup>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<Version>1.1.0</Version>
<Version>1.2.0-beta</Version>
<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>
<Copyright>Copyright © Akade 2023</Copyright>
<Copyright>Copyright © Akade 2024</Copyright>
<Authors>Akade</Authors>
<EnablePackageValidation>true</EnablePackageValidation>
<RepositoryUrl>https://github.com/akade/Akade.IndexedSet</RepositoryUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryUrl>https://github.com/akade/Akade.IndexedSet</RepositoryUrl>
<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>
<PackageReadmeFile>/README.md</PackageReadmeFile>
</PropertyGroup>

<PropertyGroup>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<EnablePackageValidation>true</EnablePackageValidation>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
</PropertyGroup>

<ItemGroup>
<None Include="..\README.md" Pack="true" PackagePath="\" />
Expand Down
74 changes: 36 additions & 38 deletions Akade.IndexedSet/PublicAPI/PublicAPI.Shipped.txt

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions Akade.IndexedSet/PublicAPI/net6.0/PublicAPI.Shipped.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Akade.IndexedSet.ExperimentalAttribute
Akade.IndexedSet.ExperimentalAttribute.UrlFormat.get -> string?
Akade.IndexedSet.ExperimentalAttribute.UrlFormat.set -> void
override Akade.IndexedSet.ExperimentalAttribute.ToString() -> string!
4 changes: 0 additions & 4 deletions Akade.IndexedSet/PublicAPI/net6.0/PublicAPI.Unshipped.txt
Original file line number Diff line number Diff line change
@@ -1,4 +0,0 @@
Akade.IndexedSet.ExperimentalAttribute.UrlFormat.get -> string?
Akade.IndexedSet.ExperimentalAttribute.UrlFormat.set -> void
override Akade.IndexedSet.ExperimentalAttribute.ToString() -> string!
Akade.IndexedSet.ExperimentalAttribute
180 changes: 90 additions & 90 deletions docs/Benchmarks.md

Large diffs are not rendered by default.

0 comments on commit 054a48f

Please sign in to comment.