Skip to content

Commit 366557f

Browse files
committed
Release notes for 2.9.0-beta1.
1 parent 29c2a7f commit 366557f

File tree

3 files changed

+24
-1
lines changed

3 files changed

+24
-1
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# .NET Driver Version 2.9.0-beta1 Release Notes
2+
3+
This is a beta release for the 2.9.0 version of the driver that will be released with MongoDB server version 4.2.
4+
5+
The main feature in 2.9.0-beta1 is pinning to a single mongos router when in a sharded transaction.
6+
7+
An online version of these release notes is available at:
8+
9+
https://github.com/mongodb/mongo-csharp-driver/blob/master/Release%20Notes/Release%20Notes%20v2.9.0-beta1.md
10+
11+
The full list of JIRA issues that are currently scheduled to be resolved in this release is available at:
12+
13+
https://jira.mongodb.org/issues/?jql=project%20%3D%20CSHARP%20AND%20fixVersion%20%3D%202.9.0%20ORDER%20BY%20key%20ASC
14+
15+
The list may change as we approach the release date.
16+
17+
Documentation on the .NET driver can be found at:
18+
19+
http://mongodb.github.io/mongo-csharp-driver/
20+
21+
Upgrading
22+
23+
There are no known backwards breaking changes in this release.

build.cake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ Task("PackageReleaseZipFile")
259259
var stagingLicenseFile = stagingDirectory.CombineWithFilePath("license.txt");
260260
CopyFile(licenseFile, stagingLicenseFile);
261261

262-
var releaseNotesFileName = "Release Notes v" + gitVersion.MajorMinorPatch + ".md";
262+
var releaseNotesFileName = "Release Notes v" + gitVersion.LegacySemVer + ".md";
263263
var releaseNotesDirectory = solutionDirectory.Combine("Release Notes");
264264
var releaseNotesFile = releaseNotesDirectory.CombineWithFilePath(releaseNotesFileName);
265265
var stagingDirectoryReleaseNotesFile = stagingDirectory.CombineWithFilePath(releaseNotesFileName);

0 commit comments

Comments
 (0)