Skip to content

Commit

Permalink
1.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
StefH committed Mar 18, 2023
1 parent e978e34 commit 9092e01
Show file tree
Hide file tree
Showing 7 changed files with 24 additions and 9 deletions.
6 changes: 3 additions & 3 deletions Generate ReleaseNotes.bat
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
rem https://github.com/StefH/GitHubReleaseNotes

SET version=1.2.3
SET version=1.2.4

GitHubReleaseNotes --output ReleaseNotes.md --skip-empty-releases --exclude-labels question invalid documentation --version %version%
GitHubReleaseNotes --output ReleaseNotes.md --skip-empty-releases --exclude-labels question invalid documentation --version %version% --token %GH_TOKEN%

GitHubReleaseNotes --output PackageReleaseNotes.txt --skip-empty-releases --exclude-labels question invalid documentation --template PackageReleaseNotes.template --version %version%
GitHubReleaseNotes --output PackageReleaseNotes.txt --skip-empty-releases --exclude-labels question invalid documentation --template PackageReleaseNotes.template --version %version% --token %GH_TOKEN%
1 change: 1 addition & 0 deletions LinqKit Solution.sln
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
Directory.Build.props = Directory.Build.props
Generate ReleaseNotes.bat = Generate ReleaseNotes.bat
LICENSE = LICENSE
NuGet.txt = NuGet.txt
PackageReleaseNotes.template = PackageReleaseNotes.template
PackageReleaseNotes.txt = PackageReleaseNotes.txt
README.md = README.md
Expand Down
9 changes: 9 additions & 0 deletions NuGet.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
Open Command Prompt

LINQKit\src>

del /S *.nupkg

VS rebuild

dotnet nuget push **\*.nupkg --source https://api.nuget.org/v3/index.json --api-key x
8 changes: 4 additions & 4 deletions PackageReleaseNotes.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# 1.2.3 (09 November 2022)
- #174 Simplify LeftJoin-extension [feature]
- #179 Update some NuGet packages [feature]
- #180 Add support for .NET 7 and EF Core 7 [feature]
# 1.2.4 (18 March 2023)
- #182 Use System.Linq.Expressions.ExpressionVisitor where available [feature]
- #184 Bump Microsoft.Data.SqlClient from 1.0.19269.1 to 1.1.4 in /examples/ConsoleAppNet472 [dependencies]
- #122 Only use custom ExpressionVisitor for .NET 3.5 [feature]

The full release notes can be found here: https://github.com/scottksmith95/LINQKit/blob/master/ReleaseNotes.md
5 changes: 5 additions & 0 deletions ReleaseNotes.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 1.2.4 (18 March 2023)
- [#182](https://github.com/scottksmith95/LINQKit/pull/182) - Use System.Linq.Expressions.ExpressionVisitor where available [feature] contributed by [TheConstructor](https://github.com/TheConstructor)
- [#184](https://github.com/scottksmith95/LINQKit/pull/184) - Bump Microsoft.Data.SqlClient from 1.0.19269.1 to 1.1.4 in /examples/ConsoleAppNet472 [dependencies] contributed by [dependabot[bot]](https://github.com/apps/dependabot)
- [#122](https://github.com/scottksmith95/LINQKit/issues/122) - Only use custom ExpressionVisitor for .NET 3.5 [feature]

# 1.2.3 (09 November 2022)
- [#174](https://github.com/scottksmith95/LINQKit/pull/174) - Simplify LeftJoin-extension [feature] contributed by [TheConstructor](https://github.com/TheConstructor)
- [#179](https://github.com/scottksmith95/LINQKit/pull/179) - Update some NuGet packages [feature] contributed by [StefH](https://github.com/StefH)
Expand Down
2 changes: 1 addition & 1 deletion examples/ConsoleAppNet472/packages.config
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<packages>
<package id="Microsoft.Bcl.AsyncInterfaces" version="1.1.0" targetFramework="net472" />
<package id="Microsoft.Bcl.HashCode" version="1.1.0" targetFramework="net472" />
<package id="Microsoft.Data.SqlClient" version="1.0.19269.1" targetFramework="net472" />
<package id="Microsoft.Data.SqlClient" version="1.1.4" targetFramework="net472" />
<package id="Microsoft.Data.SqlClient.SNI" version="1.0.19235.1" targetFramework="net472" />
<package id="Microsoft.EntityFrameworkCore" version="3.1.1" targetFramework="net472" />
<package id="Microsoft.EntityFrameworkCore.Abstractions" version="3.1.1" targetFramework="net472" />
Expand Down
2 changes: 1 addition & 1 deletion version.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<Project>
<PropertyGroup>
<PatchVersion>3</PatchVersion>
<PatchVersion>4</PatchVersion>
</PropertyGroup>
</Project>

0 comments on commit 9092e01

Please sign in to comment.