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

Commit fd4cfe0

Browse files
author
Christian Hergert
committed
Release 0.8.0
1 parent 524bac4 commit fd4cfe0

File tree

5 files changed

+37
-12
lines changed

5 files changed

+37
-12
lines changed

CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ include(InstallRequiredSystemLibraries)
1010
set (SOURCE_DIR "${PROJECT_SOURCE_DIR}/")
1111

1212
set (BSON_MAJOR_VERSION 0)
13-
set (BSON_MINOR_VERSION 6)
14-
set (BSON_MICRO_VERSION 9)
13+
set (BSON_MINOR_VERSION 8)
14+
set (BSON_MICRO_VERSION 0)
1515
set (BSON_API_VERSION 1.0)
16-
set (BSON_VERSION 0.6.9)
16+
set (BSON_VERSION 0.8.0)
1717

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

NEWS

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
Libbson 0.8.0
2+
=============
3+
4+
It's that time again, time for another Libbson release!
5+
6+
This cycle includes much, much more documentation for your perusing. There is
7+
much more cross-referencing and structure for your navigation pleasure.
8+
9+
We've improved support for Libbson on a few more exotic platforms. SPARC
10+
support is looking pretty good these days.
11+
12+
You'll also find some new examples in this release to help you get started a
13+
bit faster. If there is something you'd like to see, just ask!
14+
15+
There are a few ABI breaks this cycle, as we are well on the road to a 1.0 and
16+
would like things as clean as possible. I anticipate a few more during the next
17+
couple of cycles, but we will try to keep them to a minimum. With that said,
18+
you *WILL* need to recompile your application against 0.8.0.
19+
20+
Happy Hacking!
21+
22+
123
Libbson 0.6.8
224
=============
325

build/autotools/Versions.m4

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
m4_define([bson_major_version], [0])
2-
m4_define([bson_minor_version], [6])
3-
m4_define([bson_micro_version], [9])
2+
m4_define([bson_minor_version], [8])
3+
m4_define([bson_micro_version], [0])
44
m4_define([bson_version], [bson_major_version.bson_minor_version.bson_micro_version])
55

66
# bump up by 1 for every micro release with no API changes, otherwise

build/rpm/libbson.spec

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

66
License: ASL 2.0
77
URL: https://github.com/mongodb/libbson
8-
Source0: https://github.com/mongodb/libbson/releases/download/0.6.9/libbson-0.6.9.tar.gz
8+
Source0: https://github.com/mongodb/libbson/releases/download/0.8.0/libbson-0.8.0.tar.gz
99
BuildRequires: automake
1010

1111
%description
@@ -56,6 +56,9 @@ find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
5656
%{_prefix}/share/man/man7/*
5757

5858
%changelog
59+
* Thu May 29 2014 Christian Hergert <[email protected]> - 0.8.0-1
60+
- Release 0.8.0
61+
5962
* Tue May 06 2014 Christian Hergert <[email protected]> - 0.6.9-1
6063
- Update to 0.6.9 from git.
6164
- Enable debug symbols

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 the libbson is 0.6.9 and can be <link href="https://github.com/mongodb/libbson/releases/download/0.6.9/libbson-0.6.9.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 the libbson is 0.8.0 and can be <link href="https://github.com/mongodb/libbson/releases/download/0.8.0/libbson-0.8.0.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/0.6.9/libbson-0.6.9.tar.gz</input>
64-
<output style="prompt">$ </output><input>tar -xzf libbson-0.6.9.tar.gz</input>
65-
<output style="prompt">$ </output><input>cd libbson-0.6.9/</input></screen>
63+
<screen><output style="prompt">$ </output><input>wget https://github.com/mongodb/libbson/releases/download/0.8.0/libbson-0.8.0.tar.gz</input>
64+
<output style="prompt">$ </output><input>tar -xzf libbson-0.8.0.tar.gz</input>
65+
<output style="prompt">$ </output><input>cd libbson-0.8.0/</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-0.6.9</input>
122+
<screen><output style="prompt">&gt; </output><input>cd libbson-0.8.0</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>

0 commit comments

Comments
 (0)