Skip to content

Commit 8189e90

Browse files
committed
1.2.0-beta Release
Signed-off-by: A. Jesse Jiryu Davis <[email protected]>
1 parent d62fe4a commit 8189e90

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
lines changed

CMakeLists.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ include(FindSASL2)
1818
set (SOURCE_DIR "${PROJECT_SOURCE_DIR}/")
1919

2020
set (MONGOC_MAJOR_VERSION 1)
21-
set (MONGOC_MINOR_VERSION 1)
22-
set (MONGOC_MICRO_VERSION 11)
23-
set (MONGOC_PRERELEASE_VERSION dev)
21+
set (MONGOC_MINOR_VERSION 2)
22+
set (MONGOC_MICRO_VERSION 0)
23+
set (MONGOC_PRERELEASE_VERSION beta)
2424
set (MONGOC_API_VERSION 1.0)
25-
set (MONGOC_VERSION 1.1.11-dev)
25+
set (MONGOC_VERSION 1.2.0-beta)
2626

2727
set (CPACK_RESOURCE_FILE_LICENSE "${SOURCE_DIR}/COPYING")
2828
set (CPACK_PACKAGE_VERSION_MAJOR ${MONGOC_MAJOR_VERSION})

README.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ communications to ascertain the necessary details, delaying a useful response.
6262
Here is a made-up example of a help request that provides the relevant
6363
information:
6464

65-
Hello, I'm trying to build the C driver with SSL, from mongo-c-driver-1.1.10.tar.gz. I'm on Ubuntu
65+
Hello, I'm trying to build the C driver with SSL, from mongo-c-driver-1.2.0.tar.gz. I'm on Ubuntu
6666
14.04, 64-bit Intel, with gcc 4.8.2. I run configure like::
6767

6868
$ ./configure --enable-sasl=yes
@@ -95,13 +95,13 @@ Building from Release Tarball
9595
Unless you intend on contributing to the mongo-c-driver, you will want to build
9696
from a release tarball.
9797

98-
The most current release is 1.1.10 which you can download here.
99-
`mongo-c-driver-1.1.10.tar.gz <https://github.com/mongodb/mongo-c-driver/releases/download/1.1.10/mongo-c-driver-1.1.10.tar.gz>`_.
98+
The most current release is 1.2.0 which you can download here.
99+
`mongo-c-driver-1.2.0.tar.gz <https://github.com/mongodb/mongo-c-driver/releases/download/1.2.0/mongo-c-driver-1.2.0.tar.gz>`_.
100100

101101
To build on UNIX-like systems, do the following::
102102

103-
$ tar xzf mongo-c-driver-1.1.10.tar.gz
104-
$ cd mongo-c-driver-1.1.10
103+
$ tar xzf mongo-c-driver-1.2.0.tar.gz
104+
$ cd mongo-c-driver-1.2.0
105105
$ ./configure
106106
$ make
107107
$ sudo make install
@@ -112,7 +112,7 @@ To see all of the options available to you during configuration, run::
112112

113113
To build on Windows Vista or newer with Visual Studio 2010, do the following::
114114

115-
cd mongo-c-driver-1.1.10
115+
cd mongo-c-driver-1.2.0
116116
cd src\libbson
117117
cmake -DCMAKE_INSTALL_PREFIX=C:\usr -G "Visual Studio 10 Win64" .
118118
msbuild.exe ALL_BUILD.vcxproj

build/autotools/Versions.m4

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
m4_define([mongoc_major_version], [1])
2-
m4_define([mongoc_minor_version], [1])
3-
m4_define([mongoc_micro_version], [7])
4-
m4_define([mongoc_prerelease_version], [dev])
2+
m4_define([mongoc_minor_version], [2])
3+
m4_define([mongoc_micro_version], [0])
4+
m4_define([mongoc_prerelease_version], [beta])
55

66
m4_define(
77
[mongoc_version],
@@ -12,13 +12,13 @@ m4_define(
1212

1313
# bump up by 1 for every micro release with no API changes, otherwise
1414
# set to 0. after release, bump up by 1
15-
m4_define([mongoc_interface_age], [10])
15+
m4_define([mongoc_interface_age], [0])
1616
m4_define([mongoc_binary_age], [m4_eval(100 * mongoc_minor_version + mongoc_micro_version)])
1717

1818
m4_define([lt_current], [m4_eval(100 * mongoc_minor_version + mongoc_micro_version - mongoc_interface_age)])
1919
m4_define([lt_revision], [mongoc_interface_age])
2020
m4_define([lt_age], [m4_eval(mongoc_binary_age - mongoc_interface_age)])
2121

22-
m4_define([libbson_required_version], [1.1.10])
22+
m4_define([libbson_required_version], [1.2.0-beta])
2323

2424
m4_define([sasl_required_version], [2.1.6])

0 commit comments

Comments
 (0)