Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .backportrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
// the branches available to backport to
"targetBranchChoices": [
"master",
"v5.0",
"v4.11",
"v4.10",
"v4.9",
"v4.8",
Expand Down
2 changes: 1 addition & 1 deletion config/redirects
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
define: prefix docs/drivers/java/sync
define: base https://www.mongodb.com/${prefix}
define: versions v4.3 v4.4 v4.5 v4.6 v4.7 v4.8 v4.9 v4.10 v4.11 master
define: versions v4.3 v4.4 v4.5 v4.6 v4.7 v4.8 v4.9 v4.10 v4.11 v5.0 master

raw: ${prefix}/ -> ${base}/current/
raw: ${prefix}/master -> ${base}/upcoming/
Expand Down
4 changes: 2 additions & 2 deletions snooty.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ sharedinclude_root = "https://raw.githubusercontent.com/10gen/docs-shared/main/"
driver = "java"
driver-long = "MongoDB Java Driver"
driver-short = "Java driver"
version = "4.11"
full-version = "{+version+}.1"
version = "5.0"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Issue:
I think the "full-version" source constant below indicates that the release is 5.0.1 rather than 5.0.0.

Suggestion:
Update "full-version" to "{+version+}.0"

full-version = "{+version+}.0"
mdb-server = "MongoDB Server"
package-name-org = "mongodb-org"
api = "https://mongodb.github.io/mongo-java-driver/{+version+}"
Expand Down