Skip to content

Commit 6faa9ea

Browse files
authored
CXX-3150 Post-release changes for 4.0.0 (#1283)
* Rename SSDLC static analysis report filename for consistency * Update release version tables for 4.0.0 * Fix double-slashes in Hugo pages * Avoid overwriting new sitemap files * Prepare to generate r4.0.0 release documentation * Add CHANGELOG section for the next minor release * Fix typo in section header name * Remove note concerning branch -> tag for releases/stable * Wording tweaks * Fix link to the MongoDB Manual * Use consistent articles in the bug fix alert * Remove duplicate and incorrect reference to 3.11.0 API docs * Improve consistency and formatting of version tables * Update release instructions to refer to mongocxx-v4 * Update Hugo shortcodes to refer to api/current pages
1 parent 7402d3d commit 6faa9ea

File tree

16 files changed

+95
-132
lines changed

16 files changed

+95
-132
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
Changes prior to 3.9.0 are documented as [release notes on GitHub](https://github.com/mongodb/mongo-cxx-driver/releases).
99

10+
## 4.1.0 [Unreleased]
11+
12+
<!-- Will contain entries for the next minor release. -->
13+
1014
## 4.0.0
1115

1216
### Added

Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1594,7 +1594,7 @@ TOC_EXPAND = NO
15941594
# protocol see https://www.sitemaps.org
15951595
# This tag requires that the tag GENERATE_HTML is set to YES.
15961596

1597-
SITEMAP_URL = https://mongocxx.org/api/mongocxx-3.11.0/
1597+
SITEMAP_URL = https://mongocxx.org/api/mongocxx-4.0.0/
15981598

15991599
# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and
16001600
# QHP_VIRTUAL_FOLDER are set, an additional index file will be generated that

README.md

Lines changed: 30 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,38 @@
66

77
Welcome to the MongoDB C++ Driver!
88

9-
## Branches - `releases/stable` versus `master`
9+
## Latest Stable Release
1010

11-
The default checkout branch of this repository is `releases/stable`.
12-
This will always contain the latest stable release of the driver. The
13-
`master` branch is used for active development. `master` should
14-
**only** be used when making contributions back to the driver, as it
15-
is not stable for use in production.
11+
The `releases/stable` tag indicates the latest stable release.
12+
This tag corresponds to the driver version which we currently recommend for use in production.
13+
By default, new users should clone or download the driver version which is currently indicated by this tag.
1614

17-
See [Driver Status by family and version](#driver-status-by-family-and-version)
18-
for more details about the various versions of the driver.
15+
```bash
16+
# Use the latest stable release which is currently recommended for use.
17+
git clone -b releases/stable https://github.com/mongodb/mongo-cxx-driver.git
18+
```
19+
20+
## Driver Development Status
21+
22+
> [!IMPORTANT]
23+
> Relevant bug fixes will be backported from the current major version to the previous major version for a period of one year after the new major version is released.
24+
25+
| Version | ABI Stability | Development Stability | Development Status |
26+
| :---------: | :-------------: | :-------------------------: | :----------------: |
27+
| master | N/A | _Do not use in production!_ | Active |
28+
| 4.0.0 | None | Ready for Use | Bug Fixes Only |
29+
| 3.11.0 | None | Ready for Use | Bug Fixes Only |
30+
| 3.10.2 | None | Ready for Use | Not Supported |
31+
| ... | ... | ... | ... |
32+
| 3.0.0 | None | Ready for Use | Not Supported |
33+
34+
## MongoDB Server Compatibility
35+
36+
MongoDB server version compatibility per driver version is documented in the [MongoDB Manual](https://www.mongodb.com/docs/languages/cpp/cpp-driver/current/compatibility/).
37+
38+
## Bugs and Issues
39+
40+
See our [JIRA project](https://jira.mongodb.com/browse/CXX).
1941

2042
## Resources
2143

@@ -30,35 +52,6 @@ for more details about the various versions of the driver.
3052
* [MongoDB Developer Center](https://www.mongodb.com/developer/languages/cpp/)
3153
* [StackOverflow](https://stackoverflow.com/questions/tagged/mongodb%20c%2b%2b)
3254

33-
## Driver status by family and version
34-
35-
Stability indicates whether this driver is recommended for production use.
36-
Currently, no drivers guarantee API or ABI stability.
37-
38-
| Family/version | Stability | Development | Purpose |
39-
| -------------------- | ----------- | ------------------- | ----------------------------------- |
40-
| (repo master branch) | Unstable | Active development | New feature development |
41-
| mongocxx 3.11.x | Stable | Bug fixes only | Current stable C++ driver release |
42-
| mongocxx 3.10.x | Stable | None | Previous stable C++ driver release |
43-
| mongocxx 3.9.x | Stable | None | Previous stable C++ driver release |
44-
| mongocxx 3.8.x | Stable | None | Previous stable C++ driver release |
45-
| mongocxx 3.7.x | Stable | None | Previous stable C++ driver release |
46-
| mongocxx 3.6.x | Stable | None | Previous stable C++ driver release |
47-
| mongocxx 3.5.x | Stable | None | Previous stable C++ driver release |
48-
| mongocxx 3.4.x | Stable | None | Previous stable C++ driver release |
49-
| mongocxx 3.3.x | Stable | None | Previous stable C++ driver release |
50-
| mongocxx 3.2.x | Stable | None | Previous stable C++ driver release |
51-
| mongocxx 3.1.x | Stable | None | Previous stable C++ driver release |
52-
| mongocxx 3.0.x | Stable | None | Previous stable C++ driver release |
53-
54-
## MongoDB compatibility
55-
56-
Compatibility of each C++ driver version with each MongoDB server is documented in the [MongoDB manual](https://www.mongodb.com/docs/drivers/cxx#mongodb-compatibility).
57-
58-
## Bugs and issues
59-
60-
See our [JIRA project](https://jira.mongodb.com/browse/CXX).
61-
6255
## License
6356

6457
The source files in this repository are made available under the terms of

docs/config.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
baseurl = "https://mongocxx.org"
1+
baseurl = "https://mongocxx.org/"
22
languageCode = "en-us"
33
title = "MongoDB C++ Driver Manual"
44
theme = "mongodb"
@@ -22,7 +22,7 @@ disableKinds = ["taxonomy", "term"]
2222
pre = "<i class='fa fa-book'></i>"
2323
weight = 90
2424
identifier = "apiDocs"
25-
url = "https://mongocxx.org/api/current"
25+
url = "https://mongocxx.org/api/current/"
2626

2727
[[menu.main]]
2828
name = "Contributing"

docs/data/mongodb.toml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,4 @@
22
githubRepo = "mongo-cxx-driver"
33
githubBranch = "master"
44
highlightTheme = "idea.css"
5-
api3Url = "https://mongocxx.org/api/mongocxx-v3"
6-
api1Url = "https://mongocxx.org/api/legacy-v1"
7-
5+
apiUrl = "https://mongocxx.org/api/current/"

docs/layouts/shortcodes/api1ref.html

Lines changed: 0 additions & 1 deletion
This file was deleted.

docs/layouts/shortcodes/api3ref.html

Lines changed: 0 additions & 1 deletion
This file was deleted.

docs/layouts/shortcodes/apiref.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{{ .Page.Site.Data.mongodb.apiUrl }}{{ with (.Get 0) }}{{ . }}{{ if ne (in . ".html") true}}.html{{ end }}{{ end }}
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
<link rel="stylesheet" href="{{.Site.BaseURL}}/lib/bootstrap.css" type="text/css" />
2-
<link rel="stylesheet" href="{{.Site.BaseURL}}/lib/font-awesome/css/font-awesome.min.css" type="text/css" />
3-
<link rel="stylesheet" href="{{.Site.BaseURL}}/css/mongodb-docs.css" type="text/css" />
4-
<link rel="stylesheet" href="{{.Site.BaseURL}}/css/overrides.css" type="text/css" />
5-
<link rel="stylesheet" href="{{.Site.BaseURL}}/lib/highlight/styles/{{ .Site.Data.mongodb.highlightTheme }}" />
1+
<link rel="stylesheet" href="{{.Site.BaseURL}}lib/bootstrap.css" type="text/css" />
2+
<link rel="stylesheet" href="{{.Site.BaseURL}}lib/font-awesome/css/font-awesome.min.css" type="text/css" />
3+
<link rel="stylesheet" href="{{.Site.BaseURL}}css/mongodb-docs.css" type="text/css" />
4+
<link rel="stylesheet" href="{{.Site.BaseURL}}css/overrides.css" type="text/css" />
5+
<link rel="stylesheet" href="{{.Site.BaseURL}}lib/highlight/styles/{{ .Site.Data.mongodb.highlightTheme }}" />

docs/themes/mongodb/layouts/partials/assets/javascripts.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
HAS_SOURCE: true
88
};
99
</script>
10-
<script type="text/javascript" src="{{.Site.BaseURL}}/js/jquery.js"></script>
11-
<script type="text/javascript" src="{{.Site.BaseURL}}/lib/bootstrap.js"></script>
12-
<script type="text/javascript" src="{{.Site.BaseURL}}/js/navbar.js"></script>
13-
<script type="text/javascript" src="{{.Site.BaseURL}}/lib/highlight/highlight.pack.js"></script>
14-
<script type="text/javascript" src="{{.Site.BaseURL}}/js/scripts.js"></script>
10+
<script type="text/javascript" src="{{.Site.BaseURL}}js/jquery.js"></script>
11+
<script type="text/javascript" src="{{.Site.BaseURL}}lib/bootstrap.js"></script>
12+
<script type="text/javascript" src="{{.Site.BaseURL}}js/navbar.js"></script>
13+
<script type="text/javascript" src="{{.Site.BaseURL}}lib/highlight/highlight.pack.js"></script>
14+
<script type="text/javascript" src="{{.Site.BaseURL}}js/scripts.js"></script>

docs/themes/mongodb/layouts/partials/header.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html lang="en">
33
<head>
44
{{ partial "meta.html"}}
5-
<link rel="shortcut icon" href="{{.Site.BaseURL}}/img/favicon.png">
5+
<link rel="shortcut icon" href="{{.Site.BaseURL}}img/favicon.png">
66

77
<title>{{.Title}}</title>
88

docs/themes/mongodb/layouts/partials/header/main.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<!--logo start-->
88
<div class="logo pull-left">
99
<a href="{{ .Site.BaseURL }}">
10-
<img src="{{.Site.BaseURL }}/img/logo-mongodb-header.png",
10+
<img src="{{.Site.BaseURL }}img/logo-mongodb-header.png",
1111
alt="MongoDB C++ driver" />
1212
</a>
1313
</div>

etc/apidocmenu.md

Lines changed: 15 additions & 60 deletions
Original file line numberDiff line numberDiff line change
@@ -1,71 +1,26 @@
11
# MongoDB C++ Driver
22

3-
## Driver status by family and version
3+
## Driver Documentation By Version
44

5-
Stability indicates whether this driver is recommended for production use.
6-
Currently, no drivers guarantee API or ABI stability.
5+
[4.0.0](../mongocxx-4.0.0) | [3.11.0](../mongocxx-3.11.0) | [3.10.2](../mongocxx-3.10.2) | [3.10.1](../mongocxx-3.10.1) | [3.10.0](../mongocxx-3.10.0) | [3.9.0](../mongocxx-3.9.0) | [3.8.1](../mongocxx-3.8.1) | [3.8.0](../mongocxx-3.8.0) | [3.7.2](../mongocxx-3.7.2) | [3.7.1](../mongocxx-3.7.1) | [3.7.0](../mongocxx-3.7.0) | [3.6.7](../mongocxx-3.6.7) | [3.6.6](../mongocxx-3.6.6) | [3.6.5](../mongocxx-3.6.5) | [3.6.4](../mongocxx-3.6.4) | [3.6.3](../mongocxx-3.6.3) | [3.6.2](../mongocxx-3.6.2) | [3.6.1](../mongocxx-3.6.1) | [3.6.0](../mongocxx-3.6.0) | [3.5.1](../mongocxx-3.5.1) | [3.5.0](../mongocxx-3.5.0) | [3.4.2](../mongocxx-3.4.2) | [3.4.1](../mongocxx-3.4.1) | [3.4.0](../mongocxx-3.4.0) | [3.3.2](../mongocxx-3.3.2) | [3.3.1](../mongocxx-3.3.1) | [3.3.0](../mongocxx-3.3.0) | [3.2.1](../mongocxx-3.2.1) | [3.2.0](../mongocxx-3.2.0) | [3.1.4](../mongocxx-3.1.4/) | [3.1.3](../mongocxx-3.1.3/) | [3.1.2](../mongocxx-3.1.2/) | [3.1.1](../mongocxx-3.1.1/) | [3.1.0](../mongocxx-3.1.0/) | [3.0.3](../mongocxx-3.0.3/) | [3.0.2](../mongocxx-3.0.2/) | [3.0.1](../mongocxx-3.0.1/) | [3.0.0](../mongocxx-3.0.0/)
76

8-
| Family/version | Stability | Development | Purpose |
9-
| -------------------- | --------- | ------------------ | ---------------------------------- |
10-
| (repo master branch) | Unstable | Active development | New feature development |
11-
| mongocxx 3.11.x | Stable | Bug fixes only | Current stable C++ driver release |
12-
| mongocxx 3.10.x | Stable | None | Previous stable C++ driver release |
13-
| mongocxx 3.9.x | Stable | None | Previous stable C++ driver release |
14-
| mongocxx 3.8.x | Stable | None | Previous stable C++ driver release |
15-
| mongocxx 3.7.x | Stable | None | Previous stable C++ driver release |
16-
| mongocxx 3.6.x | Stable | None | Previous stable C++ driver release |
17-
| mongocxx 3.5.x | Stable | None | Previous stable C++ driver release |
18-
| mongocxx 3.4.x | Stable | None | Previous stable C++ driver release |
19-
| mongocxx 3.3.x | Stable | None | Previous stable C++ driver release |
20-
| mongocxx 3.2.x | Stable | None | Previous stable C++ driver release |
21-
| mongocxx 3.1.x | Stable | None | Previous stable C++ driver release |
22-
| mongocxx 3.0.x | Stable | None | Previous stable C++ driver release |
7+
## Driver Development Status
238

24-
## Documentation versions available
9+
> [!IMPORTANT]
10+
> Relevant bug fixes will be backported from the current major version to the previous major version for a period of one year after the new major version is released.
2511
26-
| mongocxx |
27-
| ------------------------------------ |
28-
| [mongocxx-3.11.0](../mongocxx-3.11.0)|
29-
| [mongocxx-3.10.2](../mongocxx-3.10.2)|
30-
| [mongocxx-3.10.1](../mongocxx-3.10.1)|
31-
| [mongocxx-3.10.0](../mongocxx-3.10.0)|
32-
| [mongocxx-3.9.0](../mongocxx-3.9.0) |
33-
| [mongocxx-3.8.1](../mongocxx-3.8.1) |
34-
| [mongocxx-3.8.0](../mongocxx-3.8.0) |
35-
| [mongocxx-3.7.2](../mongocxx-3.7.2) |
36-
| [mongocxx-3.7.1](../mongocxx-3.7.1) |
37-
| [mongocxx-3.7.0](../mongocxx-3.7.0) |
38-
| [mongocxx-3.6.7](../mongocxx-3.6.7) |
39-
| [mongocxx-3.6.6](../mongocxx-3.6.6) |
40-
| [mongocxx-3.6.5](../mongocxx-3.6.5) |
41-
| [mongocxx-3.6.4](../mongocxx-3.6.4) |
42-
| [mongocxx-3.6.3](../mongocxx-3.6.3) |
43-
| [mongocxx-3.6.2](../mongocxx-3.6.2) |
44-
| [mongocxx-3.6.1](../mongocxx-3.6.1) |
45-
| [mongocxx-3.6.0](../mongocxx-3.6.0) |
46-
| [mongocxx-3.5.1](../mongocxx-3.5.1) |
47-
| [mongocxx-3.5.0](../mongocxx-3.5.0) |
48-
| [mongocxx-3.4.2](../mongocxx-3.4.2) |
49-
| [mongocxx-3.4.1](../mongocxx-3.4.1) |
50-
| [mongocxx-3.4.0](../mongocxx-3.4.0) |
51-
| [mongocxx-3.3.2](../mongocxx-3.3.2) |
52-
| [mongocxx-3.3.1](../mongocxx-3.3.1) |
53-
| [mongocxx-3.3.0](../mongocxx-3.3.0) |
54-
| [mongocxx-3.2.1](../mongocxx-3.2.1) |
55-
| [mongocxx-3.2.0](../mongocxx-3.2.0) |
56-
| [mongocxx-3.1.4](../mongocxx-3.1.4/) |
57-
| [mongocxx-3.1.3](../mongocxx-3.1.3/) |
58-
| [mongocxx-3.1.2](../mongocxx-3.1.2/) |
59-
| [mongocxx-3.1.1](../mongocxx-3.1.1/) |
60-
| [mongocxx-3.1.0](../mongocxx-3.1.0/) |
61-
| [mongocxx-3.0.3](../mongocxx-3.0.3/) |
62-
| [mongocxx-3.0.2](../mongocxx-3.0.2/) |
63-
| [mongocxx-3.0.1](../mongocxx-3.0.1/) |
64-
| [mongocxx-3.0.0](../mongocxx-3.0.0/) |
12+
| Version | ABI Stability | Development Stability | Development Status |
13+
| :---------: | :-------------: | :-------------------------: | :----------------: |
14+
| master | N/A | _Do not use in production!_ | Active |
15+
| 4.0.0 | None | Ready for Use | Bug Fixes Only |
16+
| 3.11.0 | None | Ready for Use | Bug Fixes Only |
17+
| 3.10.2 | None | Ready for Use | Not Supported |
18+
| ... | ... | ... | ... |
19+
| 3.0.0 | None | Ready for Use | Not Supported |
6520

66-
## MongoDB compatibility
21+
## MongoDB Server Compatibility
6722

68-
Compatibility of each C++ driver version with each MongoDB server is documented in the [MongoDB manual](https://www.mongodb.com/docs/drivers/cxx#mongodb-compatibility).
23+
MongoDB server version compatibility per driver version is documented in the [MongoDB Manual](https://www.mongodb.com/docs/languages/cpp/cpp-driver/current/compatibility/).
6924

7025
## Resources
7126

etc/deploy-to-ghpages.pl

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,26 @@ sub _pushd {
2929

3030
sub _hugo_rsync {
3131
my $tmpdir = shift;
32-
_try_run( qw{rsync -Cavz --delete --exclude=/api --exclude=/.git* --exclude=CNAME --exclude=sitemap.xml build/hugo/},
33-
$tmpdir );
32+
my @exclude = (
33+
'/api',
34+
'/categories',
35+
'/.git*',
36+
'CNAME',
37+
'/sitemap.xml',
38+
'/sitemap_index.xml',
39+
);
40+
_try_run( qw{rsync -Cavz --delete}, ( map { ; '--exclude' => $_ } @exclude ), qw{build/hugo/}, $tmpdir );
3441
}
3542

3643
sub _doxygen_rsync {
3744
my $tmpdir = shift;
38-
my @filters = ( '- /current', '- /mongocxx-v3', '- /legacy-v1' );
45+
# Do not modify symlinks.
46+
my @filters = (
47+
'- /current',
48+
'- /mongocxx-v4',
49+
'- /mongocxx-v3',
50+
'- /legacy-v1',
51+
);
3952
_try_run(
4053
qw{rsync -Cavz},
4154
( map { ; '--filter' => $_ } @filters ),

etc/generate-latest-apidocs.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ sub _try_run {
1313
die "Error running '@command" if $?;
1414
}
1515

16-
my $LATEST_DOC_TAG = "r3.11.0";
16+
my $LATEST_DOC_TAG = "r4.0.0";
1717

1818
sub main {
1919
_try_run("etc/generate-apidocs-from-tag.pl", $LATEST_DOC_TAG);

etc/releasing.md

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -482,11 +482,11 @@ git push -f upstream releases/stable
482482

483483
### Coverity Report
484484

485-
Export the `Issues: By Snapshot | SSDLC Report (v2)` view as a CSV named `static_analysis-X.Y.Z.csv`.
485+
Export the `Issues: By Snapshot | SSDLC Report (v2)` view as a CSV named `static_analysis_report-X.Y.Z.csv`.
486486

487487
### Upload SSDLC Reports
488488

489-
Upload a copy of the `static_analysis-X.Y.Z.csv`, `etc/ssdlc_compliance_report.md`, `etc/third_party_vulnerabilities.md`, and `etc/augmented.sbom.json` files. Rename the files with the version number `-X.Y.Z` suffix in their filenames as already done for other files in this folder.
489+
Upload a copy of the `static_analysis_report-X.Y.Z.csv`, `etc/ssdlc_compliance_report.md`, `etc/third_party_vulnerabilities.md`, and `etc/augmented.sbom.json` files. Rename the files with the version number `-X.Y.Z` suffix in their filenames as already done for other files in this folder.
490490

491491
> [!WARNING]
492492
> Uploading a file into the SSDLC Compliance Files folder is an irreversible action! However, the files may still be renamed. If necessary, rename any accidentally uploaded files to "(Delete Me)" or similar.
@@ -496,7 +496,7 @@ Four new files should be present in the [SSDLC Compliance Files](https://drive.g
496496
```
497497
augmented.sbom-X.Y.Z.json
498498
ssdlc_compliance_report-X.Y.Z.md
499-
static_analysis-X.Y.Z.csv
499+
static_analysis_report-X.Y.Z.csv
500500
third_party_vulnerabilities-X.Y.Z.md
501501
```
502502

@@ -604,9 +604,9 @@ This branch will be used to create a PR later.
604604
> [!IMPORTANT]
605605
> Make sure the `post-release-changes` branch is created on `master`, not `rX.Y.Z` or `releases/vX.Y`!
606606
607-
Update the tables in `etc/apidocmenu.md` with entries for the new release.
607+
In `etc/apidocmenu.md`, update the list of versions under "Driver Documentation By Version" and the table under "Driver Development Status" with a new entry corresponding to this release.
608608

609-
Edit `README.md` to match the updated `etc/apidocmenu.md`.
609+
In `README.md`, sync the "Driver Development Status" table with the updated table from `etc/apidocmenu.md`.
610610

611611
Commit these changes to the `post-release-changes` branch:
612612

@@ -713,19 +713,20 @@ git checkout gh-pages
713713
git pull
714714
```
715715

716-
Update the `api/mongocxx-v3` symlink to refer to the new release version:
716+
Update the `api/mongocxx-vX` symlink to refer to the new release version, e.g.:
717717

718718
```bash
719719
cd api
720-
rm mongocxx-v3
721-
ln -s mongocxx-X.Y.Z mongocxx-v3
720+
rm mongocxx-vX
721+
ln -s mongocxx-X.Y.Z mongocxx-vX
722722
```
723723

724-
Double-check that the `current` symlink is pointing to the symlink tracking the latest stable release:
724+
Double-check that the `current` symlink is valid and points to the symlink tracking the latest stable release of the most recent major release version, e.g.:
725725

726726
```
727-
current -> mongocxx-v3
728-
mongocxx-v3 -> mongocxx-X.Y.Z
727+
current -> mongocxx-v4
728+
mongocxx-v4 -> mongocxx-4.Y.Z
729+
mongocxx-v3 -> mongocxx-3.Y.Z
729730
```
730731

731732
Add a new entry to the `sitemap_index.xml` file referencing the sitemap for `api/mongocxx-X.Y.Z`.

0 commit comments

Comments
 (0)