Skip to content
This repository was archived by the owner on Oct 13, 2020. It is now read-only.

Commit 64aa6b9

Browse files
committed
1.1.9 Release
Signed-off-by: A. Jesse Jiryu Davis <[email protected]>
1 parent 460ad08 commit 64aa6b9

File tree

6 files changed

+25
-12
lines changed

6 files changed

+25
-12
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ set (SOURCE_DIR "${PROJECT_SOURCE_DIR}/")
1212
set (BSON_MAJOR_VERSION 1)
1313
set (BSON_MINOR_VERSION 1)
1414
set (BSON_MICRO_VERSION 9)
15-
set (BSON_PRERELEASE_VERSION dev)
15+
set (BSON_PRERELEASE_VERSION )
1616
set (BSON_API_VERSION 1.0)
17-
set (BSON_VERSION 1.1.9-dev)
17+
set (BSON_VERSION 1.1.9)
1818

1919
set (CPACK_RESOURCE_FILE_LICENSE "${SOURCE_DIR}/COPYING")
2020
set (CPACK_PACKAGE_VERSION_MAJOR ${BSON_MAJOR_VERSION})

NEWS

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
Libbson-1.1.9
2+
=============
3+
4+
This is a patch release with a fix for the build system:
5+
6+
* "./configure --enable-coverage" works now.
7+
8+
-- A. Jesse Jiryu Davis
9+
10+
111
Libbson-1.1.8
212
=============
313

build/autotools/Versions.m4

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
m4_define([bson_major_version], [1])
22
m4_define([bson_minor_version], [1])
33
m4_define([bson_micro_version], [9])
4-
m4_define([bson_prerelease_version], [dev])
4+
m4_define([bson_prerelease_version], [])
55

66
m4_define(
77
[bson_version],
@@ -12,7 +12,7 @@ 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([bson_interface_age], [8])
15+
m4_define([bson_interface_age], [9])
1616
m4_define([bson_binary_age], [m4_eval(100 * bson_minor_version + bson_micro_version)])
1717

1818
m4_define([lt_current], [m4_eval(100 * bson_minor_version + bson_micro_version - bson_interface_age)])

build/rpm/libbson.spec

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Name: libbson
2-
Version: 1.1.8
2+
Version: 1.1.9
33
Release: 1%{?dist}
44
Summary: BSON library
55

@@ -56,6 +56,9 @@ find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
5656

5757
%changelog
5858

59+
* Sun June 28 2015 A. Jesse Jiryu Davis <[email protected]> - 1.1.9-1
60+
- Release 1.1.9
61+
5962
* Sun June 21 2015 A. Jesse Jiryu Davis <[email protected]> - 1.1.8-1
6063
- Release 1.1.8
6164

doc/installing.page

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -58,11 +58,11 @@
5858

5959
<p>The following instructions are for UNIX-like systems such as GNU/Linux, FreeBSD, and Solaris. To build on Windows, see the instructions for <link xref="installing#building-windows">Building on Windows</link>.</p>
6060

61-
<p>The most recent release of libbson is 1.1.8 and can be <link href="https://github.com/mongodb/libbson/releases/download/1.1.8/libbson-1.1.8.tar.gz">downloaded here</link>. The following snippet will download and extract the current release of the driver.</p>
61+
<p>The most recent release of libbson is 1.1.9 and can be <link href="https://github.com/mongodb/libbson/releases/download/1.1.9/libbson-1.1.9.tar.gz">downloaded here</link>. The following snippet will download and extract the current release of the driver.</p>
6262

63-
<screen><output style="prompt">$ </output><input>wget https://github.com/mongodb/libbson/releases/download/1.1.8/libbson-1.1.8.tar.gz</input>
64-
<output style="prompt">$ </output><input>tar -xzf libbson-1.1.8.tar.gz</input>
65-
<output style="prompt">$ </output><input>cd libbson-1.1.8/</input></screen>
63+
<screen><output style="prompt">$ </output><input>wget https://github.com/mongodb/libbson/releases/download/1.1.9/libbson-1.1.9.tar.gz</input>
64+
<output style="prompt">$ </output><input>tar -xzf libbson-1.1.9.tar.gz</input>
65+
<output style="prompt">$ </output><input>cd libbson-1.1.9/</input></screen>
6666

6767
<p>Minimal dependencies are needed to build Libbson. On UNIX-like systems, pthreads (the POSIX threading library) is required.</p>
6868

@@ -119,7 +119,7 @@ Bindings:
119119

120120
<p>Let's start by generating Visual Studio project files for libbson. The following assumes we are compiling for 64-bit Windows using Visual Studio 2010 Express which can be freely downloaded from Microsoft.</p>
121121

122-
<screen><output style="prompt">&gt; </output><input>cd libbson-1.1.8</input>
122+
<screen><output style="prompt">&gt; </output><input>cd libbson-1.1.9</input>
123123
<output style="prompt">&gt; </output><input>cmake -G "Visual Studio 2010 Win64" "-DCMAKE_INSTALL_PREFIX=C:\libbson"</input>
124124
<output style="prompt">&gt; </output><input>msbuild.exe ALL_BUILD.vcxproj</input>
125125
<output style="prompt">&gt; </output><input>msbuild.exe INSTALL.vcxproj</input></screen>

doc/version.page

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
2121
#define BSON_MAJOR_VERSION (1)
2222
#define BSON_MINOR_VERSION (1)
23-
#define BSON_MICRO_VERSION (8)
24-
#define BSON_VERSION_S "1.1.8"
23+
#define BSON_MICRO_VERSION (9)
24+
#define BSON_VERSION_S "1.1.9"
2525
2626
#define BSON_VERSION_HEX (BSON_MAJOR_VERSION << 24 | \
2727
BSON_MINOR_VERSION << 16 | \

0 commit comments

Comments
 (0)