Skip to content

Commit 35350d4

Browse files
committed
chore(release): 4.1.0
1 parent ab80cbd commit 35350d4

File tree

2 files changed

+21
-9
lines changed

2 files changed

+21
-9
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,22 @@
22

33
All notable changes to this project will be documented in this file. See [versionize](https://github.com/versionize/versionize) for commit guidelines.
44

5+
<a name="4.1.0"></a>
6+
## [4.1.0](https://www.github.com/JaCraig/SQLParser/releases/tag/v4.1.0) (2026-03-29)
7+
8+
### Features
9+
10+
* **project:** add support for .NET 10.0 ([ab80cbd](https://www.github.com/JaCraig/SQLParser/commit/ab80cbd940b3e5558d7cd8d89f2f258edf4a2806))
11+
12+
### Other
13+
14+
* Merge pull request #101 from JaCraig/dependabot/nuget/dot-config/dependencies-8bbbd064bf ([2ee36bc](https://www.github.com/JaCraig/SQLParser/commit/2ee36bc663fd416f9dd7755b7aa23bff1a96c875))
15+
* Merge pull request #102 from JaCraig/dependabot/nuget/SQLParser.Tests/dependencies-4bb5c90d9e ([32e24e6](https://www.github.com/JaCraig/SQLParser/commit/32e24e63e53bc6a3a34324d117505e56a8636c79))
16+
* Bump the dependencies group with 1 update ([a0720d6](https://www.github.com/JaCraig/SQLParser/commit/a0720d69ccdf0772c2a2d4b35e56c6bbf2321725))
17+
* Bump the dependencies group with 2 updates ([d45f950](https://www.github.com/JaCraig/SQLParser/commit/d45f9501045e80889d88df080b385e1ce00c2eb1))
18+
* Merge branch 'master' of https://github.com/JaCraig/SQLParser ([5130ac6](https://www.github.com/JaCraig/SQLParser/commit/5130ac63819359859fb812105ed44d98c7d014c5))
19+
* **dependencies:** update package update schedule and project configurations ([d52cfbd](https://www.github.com/JaCraig/SQLParser/commit/d52cfbd91fa66e5e640b17c05fd18a0c4d4f54d6))
20+
521
<a name="4.0.4"></a>
622
## [4.0.4](https://www.github.com/JaCraig/SQLParser/releases/tag/v4.0.4) (2026-03-12)
723

SQLParser/SQLParser.csproj

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
1818
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
1919
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
20-
<Version>4.0.4</Version>
20+
<Version>4.1.0</Version>
2121
<Title>SQLParser</Title>
2222
<Copyright>Copyright © James Craig 2017</Copyright>
2323
<PackageIcon>Icon.png</PackageIcon>
@@ -49,18 +49,14 @@
4949

5050
<ItemGroup>
5151
<PackageReference Include="Antlr4.Runtime.Standard" Version="4.13.1" />
52-
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="10.0.201"
53-
PrivateAssets="All" />
52+
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="10.0.201" PrivateAssets="All" />
5453
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="10.0.201">
5554
<PrivateAssets>all</PrivateAssets>
5655
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
5756
</PackageReference>
5857
</ItemGroup>
59-
<Target Name="Husky" BeforeTargets="Restore;CollectPackageReferences"
60-
Condition="'$(HUSKY)' != 0">
61-
<Exec Command="dotnet tool restore" StandardOutputImportance="Low"
62-
StandardErrorImportance="High" />
63-
<Exec Command="dotnet husky install" StandardOutputImportance="Low"
64-
StandardErrorImportance="High" WorkingDirectory=".." />
58+
<Target Name="Husky" BeforeTargets="Restore;CollectPackageReferences" Condition="'$(HUSKY)' != 0">
59+
<Exec Command="dotnet tool restore" StandardOutputImportance="Low" StandardErrorImportance="High" />
60+
<Exec Command="dotnet husky install" StandardOutputImportance="Low" StandardErrorImportance="High" WorkingDirectory=".." />
6561
</Target>
6662
</Project>

0 commit comments

Comments
 (0)