File tree Expand file tree Collapse file tree 8 files changed +20
-15
lines changed
Expand file tree Collapse file tree 8 files changed +20
-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.
3838| Family/version | Stability | Development | Purpose |
3939| -------------------- | ----------- | ------------------- | ----------------------------------- |
4040| (repo master branch) | Unstable | Active development | New feature development |
41- | mongocxx 3.9.x | Stable | Bug fixes only | Current stable C++ driver release |
41+ | mongocxx 3.10.x | Stable | Bug fixes only | Current stable C++ driver release |
42+ | mongocxx 3.9.x | Stable | None | Previous stable C++ driver release |
4243| mongocxx 3.8.x | Stable | None | Previous stable C++ driver release |
4344| mongocxx 3.7.x | Stable | None | Previous stable C++ driver release |
4445| mongocxx 3.6.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.
2121| Family/version | Stability | Development | Purpose |
2222| -------------------- | ----------- | ------------------- | ----------------------------------- |
2323| (repo master branch) | Unstable | Active development | New feature development |
24- | mongocxx 3.9.x | Stable | Bug fixes only | Current stable C++ driver release |
24+ | mongocxx 3.10.x | Stable | Bug fixes only | Current stable C++ driver release |
25+ | mongocxx 3.9.x | Stable | None | Previous stable C++ driver release |
2526| mongocxx 3.8.x | Stable | None | Previous stable C++ driver release |
2627| mongocxx 3.7.x | Stable | None | Previous stable C++ driver release |
2728| mongocxx 3.6.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.
2626The build of mongocxx-3.9.0 automatically downloads and installs the C driver if the C driver is not detected.
2727To use an existing install of the C driver, set ` CMAKE_PREFIX_PATH ` to the directory containing the C driver install.
2828
29+ * For mongocxx-3.10.x, libmongoc 1.26.0 or later is required.
2930* For mongocxx-3.9.x, libmongoc 1.25.0 or later is required.
3031* For mongocxx-3.8.x, libmongoc 1.24.0 or later is required.
3132* For mongocxx-3.7.x, libmongoc 1.22.1 or later is required.
Original file line number Diff line number Diff line change @@ -18,12 +18,12 @@ release tarball.
1818
1919The [ mongocxx releases] ( https://github.com/mongodb/mongo-cxx-driver/releases )
2020page will have links to the release tarball for the version you wish you install. For
21- example, to download version 3.9 .0:
21+ example, to download version 3.10 .0:
2222
2323``` sh
24- curl -OL https://github.com/mongodb/mongo-cxx-driver/releases/download/r3.9 .0/mongo-cxx-driver-r3.9 .0.tar.gz
25- tar -xzf mongo-cxx-driver-r3.9 .0.tar.gz
26- cd mongo-cxx-driver-r3.9 .0/build
24+ curl -OL https://github.com/mongodb/mongo-cxx-driver/releases/download/r3.10 .0/mongo-cxx-driver-r3.10 .0.tar.gz
25+ tar -xzf mongo-cxx-driver-r3.10 .0.tar.gz
26+ cd mongo-cxx-driver-r3.10 .0/build
2727```
2828
2929Make sure you change to the ` build ` directory of whatever source tree you
Original file line number Diff line number Diff line change @@ -18,12 +18,12 @@ release tarball.
1818
1919The [ mongocxx releases] ( https://github.com/mongodb/mongo-cxx-driver/releases )
2020page will have links to the release tarball for the version you wish you install. For
21- example, to download version 3.9 .0:
21+ example, to download version 3.10 .0:
2222
2323``` sh
24- curl -OL https://github.com/mongodb/mongo-cxx-driver/releases/download/r3.9 .0/mongo-cxx-driver-r3.9 .0.tar.gz
25- tar -xzf mongo-cxx-driver-r3.9 .0.tar.gz
26- cd mongo-cxx-driver-r3.9 .0/build
24+ curl -OL https://github.com/mongodb/mongo-cxx-driver/releases/download/r3.10 .0/mongo-cxx-driver-r3.10 .0.tar.gz
25+ tar -xzf mongo-cxx-driver-r3.10 .0.tar.gz
26+ cd mongo-cxx-driver-r3.10 .0/build
2727```
2828
2929Make sure you change to the ` build ` directory of whatever source tree you
Original file line number Diff line number Diff line change @@ -18,12 +18,12 @@ release tarball.
1818
1919The [ mongocxx releases] ( https://github.com/mongodb/mongo-cxx-driver/releases )
2020page will have links to the release tarball for the version you wish you install. For
21- example, to download version 3.9 .0:
21+ example, to download version 3.10 .0:
2222
2323``` sh
24- curl -OL https://github.com/mongodb/mongo-cxx-driver/releases/download/r3.9 .0/mongo-cxx-driver-r3.9 .0.tar.gz
25- tar -xzf mongo-cxx-driver-r3.9 .0.tar.gz
26- cd mongo-cxx-driver-r3.9 .0/build
24+ curl -OL https://github.com/mongodb/mongo-cxx-driver/releases/download/r3.10 .0/mongo-cxx-driver-r3.10 .0.tar.gz
25+ tar -xzf mongo-cxx-driver-r3.10 .0.tar.gz
26+ cd mongo-cxx-driver-r3.10 .0/build
2727```
2828
2929Make 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.
88| Family/version | Stability | Development | Purpose |
99| -------------------- | --------- | ------------------ | ---------------------------------- |
1010| (repo master branch) | Unstable | Active development | New feature development |
11- | mongocxx 3.9.x | Stable | Bug fixes only | Current stable C++ driver release |
11+ | mongocxx 3.10.x | Stable | Bug fixes only | Current stable C++ driver release |
12+ | mongocxx 3.9.x | Stable | None | Previous stable C++ driver release |
1213| mongocxx 3.8.x | Stable | None | Previous stable C++ driver release |
1314| mongocxx 3.7.x | Stable | None | Previous stable C++ driver release |
1415| mongocxx 3.6.x | Stable | None | Previous stable C++ driver release |
Original file line number Diff line number Diff line change @@ -63,6 +63,7 @@ sub _try_run{
6363 r3.8.0
6464 r3.8.1
6565 r3.9.0
66+ r3.10.0
6667) ;
6768
6869sub main {
You can’t perform that action at this time.
0 commit comments