Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/1.3.3 #126

Merged
merged 2 commits into from
Aug 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile />
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>1.3.2</Version>
<Version>1.3.3</Version>
<Authors>Grant Hamm</Authors>
<Company>N/A</Company>
<Product>Dynamic Linq Query Builder - System.Text.Json Extension</Product>
Expand All @@ -23,7 +23,7 @@
<RepositoryUrl>https://github.com/tghamm/dynamic-linq-query-builder/</RepositoryUrl>
<RepositoryType>Git</RepositoryType>
<PackageTags>jquery-query-builder generic query generator linq javascript</PackageTags>
<PackageReleaseNotes>Mongo additional support</PackageReleaseNotes>
<PackageReleaseNotes>Support for long type, toggle for explicit ToString comparison</PackageReleaseNotes>
<LangVersion>latest</LangVersion>
<Configurations>Debug;Release;LocalTest</Configurations>
</PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile />
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>1.3.2</Version>
<Version>1.3.3</Version>
<Authors>Grant Hamm</Authors>
<Company>N/A</Company>
<Product>Dynamic Linq Query Builder</Product>
Expand All @@ -23,7 +23,7 @@
<RepositoryUrl>https://github.com/tghamm/dynamic-linq-query-builder/</RepositoryUrl>
<RepositoryType>Git</RepositoryType>
<PackageTags>jquery-query-builder generic query generator linq javascript</PackageTags>
<PackageReleaseNotes>Mongo additional support</PackageReleaseNotes>
<PackageReleaseNotes>Support for long type, toggle for explicit ToString comparison</PackageReleaseNotes>
<LangVersion>latest</LangVersion>
<Configurations>Debug;Release;LocalTest</Configurations>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

`dynamic-linq-query-builder` is a small library that allows any `.Net` framework class collection to be filtered dynamically at runtime.

Features (v1.3.2)
Features (v1.3.3)
--
* Generates an `IQueryable` from any collection and filter combination
* Capable of complex, grouped queries against as many fields as you want
Expand Down
Loading