Skip to content

Commit 9092e01

Browse files
committed
1.2.4
1 parent e978e34 commit 9092e01

File tree

7 files changed

+24
-9
lines changed

7 files changed

+24
-9
lines changed

Generate ReleaseNotes.bat

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
rem https://github.com/StefH/GitHubReleaseNotes
22

3-
SET version=1.2.3
3+
SET version=1.2.4
44

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

7-
GitHubReleaseNotes --output PackageReleaseNotes.txt --skip-empty-releases --exclude-labels question invalid documentation --template PackageReleaseNotes.template --version %version%
7+
GitHubReleaseNotes --output PackageReleaseNotes.txt --skip-empty-releases --exclude-labels question invalid documentation --template PackageReleaseNotes.template --version %version% --token %GH_TOKEN%

LinqKit Solution.sln

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
1010
Directory.Build.props = Directory.Build.props
1111
Generate ReleaseNotes.bat = Generate ReleaseNotes.bat
1212
LICENSE = LICENSE
13+
NuGet.txt = NuGet.txt
1314
PackageReleaseNotes.template = PackageReleaseNotes.template
1415
PackageReleaseNotes.txt = PackageReleaseNotes.txt
1516
README.md = README.md

NuGet.txt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
Open Command Prompt
2+
3+
LINQKit\src>
4+
5+
del /S *.nupkg
6+
7+
VS rebuild
8+
9+
dotnet nuget push **\*.nupkg --source https://api.nuget.org/v3/index.json --api-key x

PackageReleaseNotes.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# 1.2.3 (09 November 2022)
2-
- #174 Simplify LeftJoin-extension [feature]
3-
- #179 Update some NuGet packages [feature]
4-
- #180 Add support for .NET 7 and EF Core 7 [feature]
1+
# 1.2.4 (18 March 2023)
2+
- #182 Use System.Linq.Expressions.ExpressionVisitor where available [feature]
3+
- #184 Bump Microsoft.Data.SqlClient from 1.0.19269.1 to 1.1.4 in /examples/ConsoleAppNet472 [dependencies]
4+
- #122 Only use custom ExpressionVisitor for .NET 3.5 [feature]
55

66
The full release notes can be found here: https://github.com/scottksmith95/LINQKit/blob/master/ReleaseNotes.md

ReleaseNotes.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# 1.2.4 (18 March 2023)
2+
- [#182](https://github.com/scottksmith95/LINQKit/pull/182) - Use System.Linq.Expressions.ExpressionVisitor where available [feature] contributed by [TheConstructor](https://github.com/TheConstructor)
3+
- [#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)
4+
- [#122](https://github.com/scottksmith95/LINQKit/issues/122) - Only use custom ExpressionVisitor for .NET 3.5 [feature]
5+
16
# 1.2.3 (09 November 2022)
27
- [#174](https://github.com/scottksmith95/LINQKit/pull/174) - Simplify LeftJoin-extension [feature] contributed by [TheConstructor](https://github.com/TheConstructor)
38
- [#179](https://github.com/scottksmith95/LINQKit/pull/179) - Update some NuGet packages [feature] contributed by [StefH](https://github.com/StefH)

examples/ConsoleAppNet472/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<packages>
33
<package id="Microsoft.Bcl.AsyncInterfaces" version="1.1.0" targetFramework="net472" />
44
<package id="Microsoft.Bcl.HashCode" version="1.1.0" targetFramework="net472" />
5-
<package id="Microsoft.Data.SqlClient" version="1.0.19269.1" targetFramework="net472" />
5+
<package id="Microsoft.Data.SqlClient" version="1.1.4" targetFramework="net472" />
66
<package id="Microsoft.Data.SqlClient.SNI" version="1.0.19235.1" targetFramework="net472" />
77
<package id="Microsoft.EntityFrameworkCore" version="3.1.1" targetFramework="net472" />
88
<package id="Microsoft.EntityFrameworkCore.Abstractions" version="3.1.1" targetFramework="net472" />

version.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<Project>
22
<PropertyGroup>
3-
<PatchVersion>3</PatchVersion>
3+
<PatchVersion>4</PatchVersion>
44
</PropertyGroup>
55
</Project>

0 commit comments

Comments
 (0)