Skip to content

Commit 08083f6

Browse files
committed
Prepare to generate r3.8.0 release documentation
1 parent 2e645d0 commit 08083f6

File tree

7 files changed

+25
-31
lines changed

7 files changed

+25
-31
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ Currently, no drivers guarantee API or ABI stability.
3838
| Family/version | Stability | Development | Purpose |
3939
| -------------------- | ----------- | ------------------- | ----------------------------------- |
4040
| (repo master branch) | Unstable | Active development | New feature development |
41-
| mongocxx 3.7.x | Stable | Bug fixes only | Current stable C++ driver release |
41+
| mongocxx 3.8.x | Stable | Bug fixes only | Current stable C++ driver release |
42+
| mongocxx 3.7.x | Stable | None | Previous stable C++ driver release |
4243
| mongocxx 3.6.x | Stable | None | Previous stable C++ driver release |
4344
| mongocxx 3.5.x | Stable | None | Previous stable C++ driver release |
4445
| mongocxx 3.4.x | Stable | None | Previous stable C++ driver release |
@@ -49,7 +50,7 @@ Currently, no drivers guarantee API or ABI stability.
4950

5051
## MongoDB compatibility
5152

52-
Compatibility of each C++ driver version with each MongoDB server is documented in the [MongoDB C++ Driver Documentation](https://www.mongodb.com/docs/drivers/cxx/#mongodb-compatibility).
53+
Compatibility of each C++ driver version with each MongoDB server is documented in the [MongoDB manual](https://docs.mongodb.com/drivers/cxx#mongodb-compatibility).
5354

5455
## Bugs and issues
5556

docs/content/_index.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ Currently, no drivers guarantee API or ABI stability.
2121
| Family/version | Stability | Development | Purpose |
2222
| -------------------- | ----------- | ------------------- | ----------------------------------- |
2323
| (repo master branch) | Unstable | Active development | New feature development |
24-
| mongocxx 3.7.x | Stable | Bug fixes only | Current stable C++ driver release |
24+
| mongocxx 3.8.x | Stable | Bug fixes only | Current stable C++ driver release |
25+
| mongocxx 3.7.x | Stable | None | Previous stable C++ driver release |
2526
| mongocxx 3.6.x | Stable | None | Previous stable C++ driver release |
2627
| mongocxx 3.5.x | Stable | None | Previous stable C++ driver release |
2728
| mongocxx 3.4.x | Stable | None | Previous stable C++ driver release |

docs/content/mongocxx-v3/installation/linux.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ title = "Linux"
1111

1212
The mongocxx driver builds on top of the MongoDB C driver.
1313

14+
* For mongocxx-3.8.x, libmongoc 1.24.0 or later is required.
1415
* For mongocxx-3.7.x, libmongoc 1.22.1 or later is required.
1516
* For mongocxx-3.6.x, libmongoc 1.17.0 or later is required.
1617
* For mongocxx-3.5.x, libmongoc 1.15.0 or later is required.
@@ -77,12 +78,12 @@ release tarball.
7778

7879
The [mongocxx releases](https://github.com/mongodb/mongo-cxx-driver/releases)
7980
page will have links to the release tarball for the version you wish you install. For
80-
example, to download version 3.7.2:
81+
example, to download version 3.8.0:
8182

8283
```sh
83-
curl -OL https://github.com/mongodb/mongo-cxx-driver/releases/download/r3.7.2/mongo-cxx-driver-r3.7.2.tar.gz
84-
tar -xzf mongo-cxx-driver-r3.7.2.tar.gz
85-
cd mongo-cxx-driver-r3.7.2/build
84+
curl -OL https://github.com/mongodb/mongo-cxx-driver/releases/download/r3.8.0/mongo-cxx-driver-r3.8.0.tar.gz
85+
tar -xzf mongo-cxx-driver-r3.8.0.tar.gz
86+
cd mongo-cxx-driver-r3.8.0/build
8687
```
8788

8889
Make sure you change to the `build` directory of whatever source tree you

docs/content/mongocxx-v3/installation/macos.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ title = "macOS"
1111

1212
The mongocxx driver builds on top of the MongoDB C driver.
1313

14+
* For mongocxx-3.8.x, libmongoc 1.24.0 or later is required.
1415
* For mongocxx-3.7.x, libmongoc 1.22.1 or later is required.
1516
* For mongocxx-3.6.x, libmongoc 1.17.0 or later is required.
1617
* For mongocxx-3.5.x, libmongoc 1.15.0 or later is required.
@@ -77,12 +78,12 @@ release tarball.
7778

7879
The [mongocxx releases](https://github.com/mongodb/mongo-cxx-driver/releases)
7980
page will have links to the release tarball for the version you wish you install. For
80-
example, to download version 3.7.2:
81+
example, to download version 3.8.0:
8182

8283
```sh
83-
curl -OL https://github.com/mongodb/mongo-cxx-driver/releases/download/r3.7.2/mongo-cxx-driver-r3.7.2.tar.gz
84-
tar -xzf mongo-cxx-driver-r3.7.2.tar.gz
85-
cd mongo-cxx-driver-r3.7.2/build
84+
curl -OL https://github.com/mongodb/mongo-cxx-driver/releases/download/r3.8.0/mongo-cxx-driver-r3.8.0.tar.gz
85+
tar -xzf mongo-cxx-driver-r3.8.0.tar.gz
86+
cd mongo-cxx-driver-r3.8.0/build
8687
```
8788

8889
Make sure you change to the `build` directory of whatever source tree you

docs/content/mongocxx-v3/installation/windows.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ title = "Windows"
1111

1212
The mongocxx driver builds on top of the MongoDB C driver.
1313

14+
* For mongocxx-3.8.x, libmongoc 1.24.0 or later is required.
1415
* For mongocxx-3.7.x, libmongoc 1.22.1 or later is required.
1516
* For mongocxx-3.6.x, libmongoc 1.17.0 or later is required.
1617
* For mongocxx-3.5.x, libmongoc 1.15.0 or later is required.
@@ -80,12 +81,12 @@ release tarball.
8081

8182
The [mongocxx releases](https://github.com/mongodb/mongo-cxx-driver/releases)
8283
page will have links to the release tarball for the version you wish you install. For
83-
example, to download version 3.7.2:
84+
example, to download version 3.8.0:
8485

8586
```sh
86-
curl -OL https://github.com/mongodb/mongo-cxx-driver/releases/download/r3.7.2/mongo-cxx-driver-r3.7.2.tar.gz
87-
tar -xzf mongo-cxx-driver-r3.7.2.tar.gz
88-
cd mongo-cxx-driver-r3.7.2/build
87+
curl -OL https://github.com/mongodb/mongo-cxx-driver/releases/download/r3.8.0/mongo-cxx-driver-r3.8.0.tar.gz
88+
tar -xzf mongo-cxx-driver-r3.8.0.tar.gz
89+
cd mongo-cxx-driver-r3.8.0/build
8990
```
9091

9192
Make sure you change to the `build` directory of whatever source tree you

etc/apidocmenu.md

Lines changed: 4 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ Currently, no drivers guarantee API or ABI stability.
88
| Family/version | Stability | Development | Purpose |
99
| -------------------- | ----------- | ------------------- | ------------------------------------- |
1010
| (repo master branch) | Unstable | Active development | New feature development |
11-
| mongocxx 3.7.x | Stable | Bug fixes only | Current stable C++ driver release |
11+
| mongocxx 3.8.x | Stable | Bug fixes only | Current stable C++ driver release |
12+
| mongocxx 3.7.x | Stable | None | Previous stable C++ driver release |
1213
| mongocxx 3.6.x | Stable | None | Previous stable C++ driver release |
1314
| mongocxx 3.5.x | Stable | None | Previous stable C++ driver release |
1415
| mongocxx 3.4.x | Stable | None | Previous stable C++ driver release |
@@ -21,6 +22,7 @@ Currently, no drivers guarantee API or ABI stability.
2122

2223
| mongocxx |
2324
| ---------------------------------------------|
25+
| [mongocxx-3.8.0](../mongocxx-3.8.0) |
2426
| [mongocxx-3.7.2](../mongocxx-3.7.2) |
2527
| [mongocxx-3.7.1](../mongocxx-3.7.1) |
2628
| [mongocxx-3.7.0](../mongocxx-3.7.0) |
@@ -54,21 +56,7 @@ Currently, no drivers guarantee API or ABI stability.
5456

5557
## MongoDB compatibility
5658

57-
The following compatibility table specifies the driver version(s)
58-
recommended for different versions of MongoDB. The mongocxx series
59-
is recommended for all new development.
60-
61-
| Family/version | MongoDB 3.0 | MongoDB 3.2 | MongoDB 3.4 | MongoDB 3.6 | MongoDB 4.0 | MongoDB 4.2 | MongoDB 4.4 | MongoDB 5.0 |
62-
| -------------- | ----------- | ----------- | ----------- | ----------- | ----------- | ----------- | ----------- | ----------- |
63-
| mongocxx 3.7.x |||||||||
64-
| mongocxx 3.6.x |||||||| |
65-
| mongocxx 3.5.x |||||| Partial | | |
66-
| mongocxx 3.4.x |||||| | | |
67-
| mongocxx 3.3.x ||||| | | | |
68-
| mongocxx 3.2.x |||| Partial | | | | |
69-
| mongocxx 3.1.x |||| | | | | |
70-
| mongocxx 3.0.x ||| | | | | | |
71-
59+
Compatibility of each C++ driver version with each MongoDB server is documented in the [MongoDB manual](https://docs.mongodb.com/drivers/cxx#mongodb-compatibility).
7260

7361
## Resources
7462

etc/generate-all-apidocs.pl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ sub _try_run {
6060
r3.7.0
6161
r3.7.1
6262
r3.7.2
63+
r3.8.0
6364
);
6465

6566
sub main {

0 commit comments

Comments
 (0)