Skip to content

Commit 6e45875

Browse files
committed
BUMP legacy-1.0.0
1 parent ed4c153 commit 6e45875

File tree

3 files changed

+14
-20
lines changed

3 files changed

+14
-20
lines changed

README.md

Lines changed: 12 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -3,33 +3,27 @@ Welcome to the MongoDB C++ Driver!
33

44
Please see our [wiki page](https://github.com/mongodb/mongo-cxx-driver/wiki/Download%20and%20Compile) for information about building, testing, and using the driver.
55

6-
Version [1.0.0-rc4](https://github.com/mongodb/mongo-cxx-driver/releases/tag/legacy-1.0.0-rc4)
7-
of the C++ legacy driver has been released. Help us test it out!
8-
Please report any bugs or issues in the C++
9-
[JIRA project](http://jira.mongodb.org/browse/CXX).
10-
11-
> **NOTE:** The legacy branch is currently in testing. If you are looking for a production-ready release of the C++ driver you should use the 26compat branch until our RC testing is complete.
6+
Version [1.0.0](https://github.com/mongodb/mongo-cxx-driver/releases/tag/legacy-1.0.0)
7+
of the C++ legacy driver has been released. Please report any bugs or issues in the C++ [JIRA project](http://jira.mongodb.org/browse/CXX).
128

139
Use the legacy branch if:
1410

15-
- You want to help test the upcoming 1.0 release of the legacy C++ driver.
16-
- You are using MongoDB's C++ driver for the first time and do not mind the driver being actively worked on.
17-
- You had been using 26compat (or the driver inside of the server source) and want to benefit from incremental improvements while having the same overall API.
11+
- You are using MongoDB's C++ driver for the first time.
12+
- You had been using 26compat (or the driver inside of the server source), can tolerate source level changes, and want to benefit from incremental improvements while having the same overall API.
1813

19-
Switch to the 26compat branch if:
14+
Use the 26compat branch only if:
2015

21-
- You need a production ready release of the C++ driver that is not under active development.
22-
- You have existing code that used the driver from the server source and want it to continue working without modification.
16+
- You have existing code that used the driver from the 2.6 or earlier server source and want it to continue working without modification.
2317

24-
> **Note:** As of MongoDB 2.6.0-rc1, it is no longer possible to build the driver from the server sources: this repository is the only approved source for driver builds.
18+
> **Note:** As of MongoDB 2.6.0-rc1, it is no longer possible to build the driver from the server sources: this repository is the only approved source for C++ driver builds.
2519
2620
## Repository Overview
2721

28-
| Branch | Stability | Development | Purpose |
29-
| -------- | ------------| ----------------- | ----------------------------------------------------- |
30-
| master | Unstable | Planning | New C++ driver (work in progress) |
31-
| legacy | Pre-release | RC Testing | Existing C++ driver with non-compatible improvements |
32-
| 26compat | Stable | Maintenance Only | Drop in replacement for users of existing C++ driver |
22+
| Branch | Stability | Development | Purpose |
23+
| -------- | ------------| ----------------- | ----------------------------------------------------- |
24+
| master | Unstable | Planning | New C++11 driver (work in progress) |
25+
| legacy | Stable | Stable Evolution | Primary stable C++ driver release |
26+
| 26compat | Stable | Maintenance Only | Drop in replacement for users of existing 2.6 era C++ driver |
3327

3428
> **WARNING:** The master branch will contain future development work on a new driver with a completely new API and implementation. It is a work in progress and currently should not be used.
3529

SConstruct

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -421,7 +421,7 @@ if releaseBuild and (debugBuild or not optBuild):
421421
print("Error: A --release build may not have debugging, and must have optimization")
422422
Exit(1)
423423

424-
mongoclientVersion = "1.0.0-rc5-pre"
424+
mongoclientVersion = "1.0.0"
425425
# We don't keep the -pre in the user testable version identifiers, because
426426
# nobody should be conditioning on the pre-release status.
427427
mongoclientVersionComponents = re.split(r'\.|-rc', mongoclientVersion.partition('-pre')[0])

etc/doxygen/config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#---------------------------------------------------------------------------
44
DOXYFILE_ENCODING = UTF-8
55
PROJECT_NAME = "MongoDB C++ Driver"
6-
PROJECT_NUMBER = legacy-1.0.0-rc5-pre
6+
PROJECT_NUMBER = legacy-1.0.0
77
OUTPUT_DIRECTORY = docs/doxygen
88
CREATE_SUBDIRS = NO
99
OUTPUT_LANGUAGE = English

0 commit comments

Comments
 (0)