File tree Expand file tree Collapse file tree 8 files changed +21
-15
lines changed Expand file tree Collapse file tree 8 files changed +21
-15
lines changed Original file line number Diff line number Diff line change @@ -38,7 +38,8 @@ Currently, no drivers guarantee API or ABI stability.
38
38
| Family/version | Stability | Development | Purpose |
39
39
| -------------------- | ----------- | ------------------- | ----------------------------------- |
40
40
| (repo master branch) | Unstable | Active development | New feature development |
41
- | mongocxx 3.8.x | Stable | Bug fixes only | Current stable C++ driver release |
41
+ | mongocxx 3.9.x | Stable | Bug fixes only | Current stable C++ driver release |
42
+ | mongocxx 3.8.x | Stable | None | Previous stable C++ driver release |
42
43
| mongocxx 3.7.x | Stable | None | Previous stable C++ driver release |
43
44
| mongocxx 3.6.x | Stable | None | Previous stable C++ driver release |
44
45
| mongocxx 3.5.x | Stable | None | Previous stable C++ driver release |
Original file line number Diff line number Diff line change @@ -21,7 +21,8 @@ Currently, no drivers guarantee API or ABI stability.
21
21
| Family/version | Stability | Development | Purpose |
22
22
| -------------------- | ----------- | ------------------- | ----------------------------------- |
23
23
| (repo master branch) | Unstable | Active development | New feature development |
24
- | mongocxx 3.8.x | Stable | Bug fixes only | Current stable C++ driver release |
24
+ | mongocxx 3.9.x | Stable | Bug fixes only | Current stable C++ driver release |
25
+ | mongocxx 3.8.x | Stable | None | Previous stable C++ driver release |
25
26
| mongocxx 3.7.x | Stable | None | Previous stable C++ driver release |
26
27
| mongocxx 3.6.x | Stable | None | Previous stable C++ driver release |
27
28
| mongocxx 3.5.x | Stable | None | Previous stable C++ driver release |
Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ The mongocxx driver builds on top of the [MongoDB C driver](https://www.mongodb.
26
26
The build of mongocxx-3.9.0 automatically downloads and installs the C driver if the C driver is not detected.
27
27
To use an existing install of the C driver, set ` CMAKE_PREFIX_PATH ` to the directory containing the C driver install.
28
28
29
+ * For mongocxx-3.9.x, libmongoc 1.25.0 or later is required.
29
30
* For mongocxx-3.8.x, libmongoc 1.24.0 or later is required.
30
31
* For mongocxx-3.7.x, libmongoc 1.22.1 or later is required.
31
32
* For mongocxx-3.6.x, libmongoc 1.17.0 or later is required.
Original file line number Diff line number Diff line change @@ -50,12 +50,12 @@ release tarball.
50
50
51
51
The [ mongocxx releases] ( https://github.com/mongodb/mongo-cxx-driver/releases )
52
52
page will have links to the release tarball for the version you wish you install. For
53
- example, to download version 3.8.1 :
53
+ example, to download version 3.9.0 :
54
54
55
55
``` sh
56
- curl -OL https://github.com/mongodb/mongo-cxx-driver/releases/download/r3.8.1 /mongo-cxx-driver-r3.8.1 .tar.gz
57
- tar -xzf mongo-cxx-driver-r3.8.1 .tar.gz
58
- cd mongo-cxx-driver-r3.8.1 /build
56
+ curl -OL https://github.com/mongodb/mongo-cxx-driver/releases/download/r3.9.0 /mongo-cxx-driver-r3.9.0 .tar.gz
57
+ tar -xzf mongo-cxx-driver-r3.9.0 .tar.gz
58
+ cd mongo-cxx-driver-r3.9.0 /build
59
59
```
60
60
61
61
Make sure you change to the ` build ` directory of whatever source tree you
Original file line number Diff line number Diff line change @@ -50,12 +50,12 @@ release tarball.
50
50
51
51
The [ mongocxx releases] ( https://github.com/mongodb/mongo-cxx-driver/releases )
52
52
page will have links to the release tarball for the version you wish you install. For
53
- example, to download version 3.8.1 :
53
+ example, to download version 3.9.0 :
54
54
55
55
``` sh
56
- curl -OL https://github.com/mongodb/mongo-cxx-driver/releases/download/r3.8.1 /mongo-cxx-driver-r3.8.1 .tar.gz
57
- tar -xzf mongo-cxx-driver-r3.8.1 .tar.gz
58
- cd mongo-cxx-driver-r3.8.1 /build
56
+ curl -OL https://github.com/mongodb/mongo-cxx-driver/releases/download/r3.9.0 /mongo-cxx-driver-r3.9.0 .tar.gz
57
+ tar -xzf mongo-cxx-driver-r3.9.0 .tar.gz
58
+ cd mongo-cxx-driver-r3.9.0 /build
59
59
```
60
60
61
61
Make sure you change to the ` build ` directory of whatever source tree you
Original file line number Diff line number Diff line change @@ -50,12 +50,12 @@ release tarball.
50
50
51
51
The [ mongocxx releases] ( https://github.com/mongodb/mongo-cxx-driver/releases )
52
52
page will have links to the release tarball for the version you wish you install. For
53
- example, to download version 3.8.1 :
53
+ example, to download version 3.9.0 :
54
54
55
55
``` sh
56
- curl -OL https://github.com/mongodb/mongo-cxx-driver/releases/download/r3.8.1 /mongo-cxx-driver-r3.8.1 .tar.gz
57
- tar -xzf mongo-cxx-driver-r3.8.1 .tar.gz
58
- cd mongo-cxx-driver-r3.8.1 /build
56
+ curl -OL https://github.com/mongodb/mongo-cxx-driver/releases/download/r3.9.0 /mongo-cxx-driver-r3.9.0 .tar.gz
57
+ tar -xzf mongo-cxx-driver-r3.9.0 .tar.gz
58
+ cd mongo-cxx-driver-r3.9.0 /build
59
59
```
60
60
61
61
Make sure you change to the ` build ` directory of whatever source tree you
Original file line number Diff line number Diff line change @@ -8,7 +8,8 @@ Currently, no drivers guarantee API or ABI stability.
8
8
| Family/version | Stability | Development | Purpose |
9
9
| -------------------- | --------- | ------------------ | ---------------------------------- |
10
10
| (repo master branch) | Unstable | Active development | New feature development |
11
- | mongocxx 3.8.x | Stable | Bug fixes only | Current stable C++ driver release |
11
+ | mongocxx 3.9.x | Stable | Bug fixes only | Current stable C++ driver release |
12
+ | mongocxx 3.8.x | Stable | None | Previous stable C++ driver release |
12
13
| mongocxx 3.7.x | Stable | None | Previous stable C++ driver release |
13
14
| mongocxx 3.6.x | Stable | None | Previous stable C++ driver release |
14
15
| mongocxx 3.5.x | Stable | None | Previous stable C++ driver release |
@@ -22,6 +23,7 @@ Currently, no drivers guarantee API or ABI stability.
22
23
23
24
| mongocxx |
24
25
| ------------------------------------ |
26
+ | [ mongocxx-3.9.0] ( ../mongocxx-3.9.0 ) |
25
27
| [ mongocxx-3.8.1] ( ../mongocxx-3.8.1 ) |
26
28
| [ mongocxx-3.8.0] ( ../mongocxx-3.8.0 ) |
27
29
| [ mongocxx-3.7.2] ( ../mongocxx-3.7.2 ) |
Original file line number Diff line number Diff line change @@ -62,6 +62,7 @@ sub _try_run {
62
62
r3.7.2
63
63
r3.8.0
64
64
r3.8.1
65
+ r3.9.0
65
66
) ;
66
67
67
68
sub main {
You can’t perform that action at this time.
0 commit comments