Skip to content

Commit 2fcf5c2

Browse files
authored
Merge pull request #639 from ckadluba/release-9.0.0
Prepare release 9.0.0 on dev
2 parents 71e291e + c60d7e3 commit 2fcf5c2

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

CHANGES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# 9.0.0
22
* Updated SqlClient to 6.1.1 and removed Azure.Identity workaround for issue #624
33
* Updated all dependencies except .NET 9 NuGets
4+
* Implemented #636: Added support for non-clustered index sort direction (thanks to @gumbarros)
45

56
# 8.2.2
67
* Fixed issue #624: Enforce new version of transient dependency to fix vulnerability and avoid nuget.org version de-listing until SqlClient 6.1 is released.

DEVELOPMENT.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Whenever the `dev` branch is updated (after merging a pull request), the `Releas
66

77
## Creating a latest Release
88

9-
### Normal Update (no major version change) {#normal-update}
9+
### Normal Update (no major version change)
1010

1111
1. On the `dev` branch, update CHANGES.md and `VersionPrefix` in Serilog.Sinks.MSSqlServer.csproj.
1212

@@ -18,6 +18,6 @@ Whenever the `dev` branch is updated (after merging a pull request), the `Releas
1818

1919
1. On the `dev` branch, update CHANGES.md and increase the major version in `VersionPrefix` in Serilog.Sinks.MSSqlServer.csproj. Also set `EnablePackageValidation` to false because on an intial release of a new major version you don't have a baseline version yet on nuget.org to compare with.
2020

21-
1. Create a PR to merge the `dev` branch into `main`. The `Release` action will be triggered. This works the same as described above under [Normal Update]({#normal-update).
21+
1. Create a PR to merge the `dev` branch into `main`. The `Release` action will be triggered. This works the same as described above under [Normal Update](#normal-update-no-major-version-change).
2222

2323
1. After the release is done make some changes in Serilog.Sinks.MSSqlServer.csproj on the `dev` branch. Set `EnablePackageValidation` back to true and `PackageValidationBaselineVersion` to the version of the new major release you just created (e.g. 7.0.0). Then also increase the patch version number in `VersionPrefix` (e.g. 7.0.1).

src/Serilog.Sinks.MSSqlServer/Serilog.Sinks.MSSqlServer.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<Description>A Serilog sink that writes events to Microsoft SQL Server and Azure SQL</Description>
55
<VersionPrefix>9.0.0</VersionPrefix>
6-
<EnablePackageValidation>true</EnablePackageValidation>
6+
<EnablePackageValidation>false</EnablePackageValidation>
77
<PackageValidationBaselineVersion>8.0.0</PackageValidationBaselineVersion>
88
<Authors>Michiel van Oudheusden;Christian Kadluba;Serilog Contributors</Authors>
99
<TargetFrameworks>netstandard2.0;net462;net472;net8.0</TargetFrameworks>

0 commit comments

Comments
 (0)