Skip to content

Commit f499c6c

Browse files
committed
bumping version.
1 parent fcd60df commit f499c6c

File tree

3 files changed

+33
-8
lines changed

3 files changed

+33
-8
lines changed

Docs/landing/data/releases.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
current = "2.0.1"
1+
current = "2.1.1"
22
[[versions]]
3-
version = "2.1.0"
3+
version = "2.1.1"
44
status = "rc"
55
docs = "http://mongodb.github.io/mongo-csharp-driver/2.1/"
66
api = "http://api.mongodb.org/csharp/2.1"
@@ -22,32 +22,32 @@ current = "2.0.1"
2222
package = "MongoDB.Driver"
2323
description = "The driver."
2424
dependencies = ".NET Core Driver,.NET BSON Library"
25-
versions = "2.1.0,2.0.1"
25+
versions = "2.1.1,2.0.1"
2626

2727
[[drivers]]
2828
name = ".NET GridFS"
2929
package = "MongoDB.Driver.GridFS"
3030
description = "The GridFS library."
3131
dependencies = ".NET Driver,.NET Core Driver,.NET BSON Library"
32-
versions = "2.1.0"
32+
versions = "2.1.1"
3333

3434
[[drivers]]
3535
name = ".NET Core Driver"
3636
package = "MongoDB.Driver.Core"
3737
description = "The core driver."
3838
dependencies = ".NET BSON Library"
39-
versions = "2.1.0,2.0.1"
39+
versions = "2.1.1,2.0.1"
4040

4141
[[drivers]]
4242
name = ".NET BSON Library"
4343
package = "MongoDB.Bson"
4444
description = "The BSON library."
4545
dependencies = ""
46-
versions = "2.1.0,2.0.1"
46+
versions = "2.1.1,2.0.1"
4747

4848
[[drivers]]
4949
name = ".NET Legacy Driver"
5050
package = "mongocsharpdriver"
5151
description = "The legacy driver."
5252
dependencies = ".NET Driver,.NET Core Driver,.NET BSON Library"
53-
versions = "2.1.0,2.0.1,1.10.1"
53+
versions = "2.1.1,2.0.1,1.10.1"

Release Notes/Release Notes v2.1.1.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# .NET Driver Version 2.1.1 Release Notes
2+
3+
This is a minor release which supports all MongoDB server versions since 2.4.
4+
5+
An online version of these release notes is available at:
6+
7+
https://github.com/mongodb/mongo-csharp-driver/blob/master/Release%20Notes/Release%20Notes%20v2.1.1.md
8+
9+
The full list of JIRA issues resolved in this release is available at:
10+
11+
{TODO}
12+
13+
Documentation on the .NET driver can be found at:
14+
15+
http://mongodb.github.io/mongo-csharp-driver/
16+
17+
18+
## Notable Fixes
19+
20+
Notable fixes are listed below. For a full list, see the full list of JIRA issues linked above.
21+
22+
23+
## Upgrading
24+
25+
There are no known backwards breaking changes in this release.

build/build.fsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ open Fake
44
open Fake.AssemblyInfoFile
55

66
let config = getBuildParamOrDefault "config" "Release"
7-
let baseVersion = getBuildParamOrDefault "baseVersion" "2.1.0"
7+
let baseVersion = getBuildParamOrDefault "baseVersion" "2.1.1"
88
let preRelease = getBuildParamOrDefault "preRelease" "local"
99
let getComputedBuildNumber() =
1010
let result = Git.CommandHelper.runSimpleGitCommand currentDirectory "describe HEAD^1 --tags --long --match \"v[0-9].[0-9].[0-9]\""

0 commit comments

Comments
 (0)