Skip to content

Commit

Permalink
- Reference docs for 2.13.0-beta1 release updated
Browse files Browse the repository at this point in the history
  • Loading branch information
BorisDog committed Mar 31, 2021
1 parent 3478b12 commit 29ae904
Show file tree
Hide file tree
Showing 7 changed files with 24 additions and 9 deletions.
15 changes: 10 additions & 5 deletions Docs/landing/data/releases.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
current = "2.12.1"

[[versions]]
version = "2.13.0-beta1"
docs = "./2.13/"
api = "./2.13/apidocs"

[[versions]]
version = "2.12.1"
status = "current"
Expand Down Expand Up @@ -76,32 +81,32 @@ current = "2.12.1"
package = "MongoDB.Driver"
description = "The driver."
dependencies = ".NET Core Driver,.NET BSON Library"
versions = "2.12.1,2.11.6,2.10.4,2.9.3,2.8.1,2.7.3,2.6.1,2.5.1,2.4.4,2.3.0,2.2.4,2.1.1,2.0.2"
versions = "2.13.0-beta1,2.12.1,2.11.6,2.10.4,2.9.3,2.8.1,2.7.3,2.6.1,2.5.1,2.4.4,2.3.0,2.2.4,2.1.1,2.0.2"

[[drivers]]
name = ".NET GridFS"
package = "MongoDB.Driver.GridFS"
description = "The GridFS library."
dependencies = ".NET Driver,.NET Core Driver,.NET BSON Library"
versions = "2.12.1,2.11.6,2.10.4,2.9.3,2.8.1,2.7.3,2.6.1,2.5.1,2.4.4,2.3.0,2.2.4,2.1.1"
versions = "2.13.0-beta1,2.12.1,2.11.6,2.10.4,2.9.3,2.8.1,2.7.3,2.6.1,2.5.1,2.4.4,2.3.0,2.2.4,2.1.1"

[[drivers]]
name = ".NET Core Driver"
package = "MongoDB.Driver.Core"
description = "The core driver."
dependencies = ".NET BSON Library"
versions = "2.12.1,2.11.6,2.10.4,2.9.3,2.8.1,2.7.3,2.6.1,2.5.1,2.4.4,2.3.0,2.2.4,2.1.1,2.0.2"
versions = "2.13.0-beta1,2.12.1,2.11.6,2.10.4,2.9.3,2.8.1,2.7.3,2.6.1,2.5.1,2.4.4,2.3.0,2.2.4,2.1.1,2.0.2"

[[drivers]]
name = ".NET BSON Library"
package = "MongoDB.Bson"
description = "The BSON library."
dependencies = ""
versions = "2.12.1,2.11.6,2.10.4,2.9.3,2.8.1,2.7.3,2.6.1,2.5.1,2.4.4,2.3.0,2.2.4,2.1.1,2.0.2"
versions = "2.13.0-beta1,2.12.1,2.11.6,2.10.4,2.9.3,2.8.1,2.7.3,2.6.1,2.5.1,2.4.4,2.3.0,2.2.4,2.1.1,2.0.2"

[[drivers]]
name = ".NET Legacy Driver"
package = "mongocsharpdriver"
description = "The legacy driver."
dependencies = ".NET Driver,.NET Core Driver,.NET BSON Library"
versions = "2.12.1,2.11.6,2.10.4,2.9.3,2.8.1,2.7.3,2.6.1,2.5.1,2.4.4,2.3.0,2.2.4,2.1.1,2.0.2,1.11"
versions = "2.13.0-beta1,2.12.1,2.11.6,2.10.4,2.9.3,2.8.1,2.7.3,2.6.1,2.5.1,2.4.4,2.3.0,2.2.4,2.1.1,2.0.2,1.11"
1 change: 1 addition & 0 deletions Docs/landing/static/versions.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
[
{"version": "2.13"},
{"version": "2.12"},
{"version": "2.11"},
{"version": "2.10"},
Expand Down
2 changes: 1 addition & 1 deletion Docs/reference/config.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
baseurl = "/mongo-csharp-driver/2.12"
baseurl = "/mongo-csharp-driver/2.13"
languageCode = "en-us"
title = "MongoDB .NET Driver"
theme = "mongodb"
Expand Down
2 changes: 1 addition & 1 deletion Docs/reference/content/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ type = "index"

The [Getting Started]({{< relref "getting_started\index.md" >}}) guide contains information about system requirements, installation, and a simple tutorial to get up and running quickly.

## What's new in 2.12.0
## What's new in 2.13.0

The [What's New]({{< relref "what_is_new.md" >}}) section contains the major new features of the driver.

Expand Down
2 changes: 1 addition & 1 deletion Docs/reference/content/upgrading.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ title = "Upgrading"

## Breaking Changes

### Backwards compatibility with driver version 2.7.0–2.11.x
### Backwards compatibility with driver version 2.7.0–2.12.x

No known backward compatibility issues.
9 changes: 9 additions & 0 deletions Docs/reference/content/what_is_new.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,15 @@ title = "What's New"
identifier = "What's New"
pre = "<i class='fa fa-star'></i>"
+++
## What's New in 2.13.0-beta1

The main new features in 2.13.0-beta1 include:

* Versioned MongoDB API for Drivers
* Implemented change stream oplog parsing code for delta oplog entries
* `estimatedDocumentCount()` now uses the `$collStats` aggregation stage instead of the `count` command
* Reduced lock contention in BsonSerializer.LookupActualType

## What's New in 2.12.0

The main new features in 2.12.0 include:
Expand Down
2 changes: 1 addition & 1 deletion Docs/reference/data/mongodb.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
githubRepo = "mongo-csharp-driver"
githubBranch = "master"
currentVersion = "2.12"
currentVersion = "2.13"
highlightTheme = "idea.css"
apiUrl = "apidocs/html"

0 comments on commit 29ae904

Please sign in to comment.