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

Commit

Permalink
1.1.11 Release
Browse files Browse the repository at this point in the history
Signed-off-by: A. Jesse Jiryu Davis <[email protected]>
  • Loading branch information
ajdavis committed Sep 23, 2015
1 parent 7ffa1b5 commit b52fca2
Show file tree
Hide file tree
Showing 6 changed files with 29 additions and 12 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ set (SOURCE_DIR "${PROJECT_SOURCE_DIR}/")
set (BSON_MAJOR_VERSION 1)
set (BSON_MINOR_VERSION 1)
set (BSON_MICRO_VERSION 11)
set (BSON_PRERELEASE_VERSION dev)
set (BSON_PRERELEASE_VERSION )
set (BSON_API_VERSION 1.0)
set (BSON_VERSION 1.1.11-dev)
set (BSON_VERSION 1.1.11)

set (CPACK_RESOURCE_FILE_LICENSE "${SOURCE_DIR}/COPYING")
set (CPACK_PACKAGE_VERSION_MAJOR ${BSON_MAJOR_VERSION})
Expand Down
14 changes: 14 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,6 +1,20 @@
Libbson-1.1.11
==============

It is my pleasure to announce to you the release of Libbson-1.1.11.

This is a patch release with improvements to the documentation:

* Document bson streaming reads with an example,
bson-streaming-reader.c.
* Document callback function types bson_reader_destroy_func_t and
bson_reader_read_func_t.

Thanks to Kyle Suarez for his contributions to this version of Libbson.

-- A. Jesse Jiryu Davis


Libbson-1.1.10
==============

Expand Down
4 changes: 2 additions & 2 deletions build/autotools/Versions.m4
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
m4_define([bson_major_version], [1])
m4_define([bson_minor_version], [1])
m4_define([bson_micro_version], [11])
m4_define([bson_prerelease_version], [dev])
m4_define([bson_prerelease_version], [])

m4_define(
[bson_version],
Expand All @@ -12,7 +12,7 @@ m4_define(

# bump up by 1 for every micro release with no API changes, otherwise
# set to 0. after release, bump up by 1
m4_define([bson_interface_age], [10])
m4_define([bson_interface_age], [11])
m4_define([bson_binary_age], [m4_eval(100 * bson_minor_version + bson_micro_version)])

m4_define([lt_current], [m4_eval(100 * bson_minor_version + bson_micro_version - bson_interface_age)])
Expand Down
5 changes: 4 additions & 1 deletion build/rpm/libbson.spec
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Name: libbson
Version: 1.1.10
Version: 1.1.11
Release: 1%{?dist}
Summary: BSON library

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

%changelog

* Wed September 23 2015 A. Jesse Jiryu Davis <[email protected]> - 1.1.11-1
- Release 1.1.11

* Tue July 21 2015 A. Jesse Jiryu Davis <[email protected]> - 1.1.10-1
- Release 1.1.10

Expand Down
10 changes: 5 additions & 5 deletions doc/installing.page
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,11 @@

<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>

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

<screen><output style="prompt">$ </output><input>wget https://github.com/mongodb/libbson/releases/download/1.1.10/libbson-1.1.10.tar.gz</input>
<output style="prompt">$ </output><input>tar -xzf libbson-1.1.10.tar.gz</input>
<output style="prompt">$ </output><input>cd libbson-1.1.10/</input></screen>
<screen><output style="prompt">$ </output><input>wget https://github.com/mongodb/libbson/releases/download/1.1.11/libbson-1.1.11.tar.gz</input>
<output style="prompt">$ </output><input>tar -xzf libbson-1.1.11.tar.gz</input>
<output style="prompt">$ </output><input>cd libbson-1.1.11/</input></screen>

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

Expand Down Expand Up @@ -119,7 +119,7 @@ Bindings:

<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>

<screen><output style="prompt">&gt; </output><input>cd libbson-1.1.10</input>
<screen><output style="prompt">&gt; </output><input>cd libbson-1.1.11</input>
<output style="prompt">&gt; </output><input>cmake -G "Visual Studio 2010 Win64" "-DCMAKE_INSTALL_PREFIX=C:\libbson"</input>
<output style="prompt">&gt; </output><input>msbuild.exe ALL_BUILD.vcxproj</input>
<output style="prompt">&gt; </output><input>msbuild.exe INSTALL.vcxproj</input></screen>
Expand Down
4 changes: 2 additions & 2 deletions doc/version.page
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
#define BSON_MAJOR_VERSION (1)
#define BSON_MINOR_VERSION (1)
#define BSON_MICRO_VERSION (10)
#define BSON_VERSION_S "1.1.10"
#define BSON_MICRO_VERSION (11)
#define BSON_VERSION_S "1.1.11"
#define BSON_VERSION_HEX (BSON_MAJOR_VERSION << 24 | \
BSON_MINOR_VERSION << 16 | \
Expand Down

0 comments on commit b52fca2

Please sign in to comment.