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

Commit 9abfe2d

Browse files
author
Christian Hergert
committed
Release 0.98.0!
Signed-off-by: Christian Hergert <[email protected]>
1 parent 6b28795 commit 9abfe2d

File tree

6 files changed

+44
-16
lines changed

6 files changed

+44
-16
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 8)
14-
set (BSON_MICRO_VERSION 5)
13+
set (BSON_MINOR_VERSION 98)
14+
set (BSON_MICRO_VERSION 0)
1515
set (BSON_API_VERSION 1.0)
16-
set (BSON_VERSION 0.8.5)
16+
set (BSON_VERSION 0.98.0)
1717

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

NEWS

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,28 @@
1+
Libbson 0.98.0
2+
==============
3+
4+
One more step closer to a 1.0!
5+
6+
This release has a few fixes as we near the finish line of a 1.0 release.
7+
We have bumped the version to 0.98.0 to sync up with MongoDB C driver, which
8+
is the primary consumer of this library.
9+
10+
This release includes a new memory callback vtable to help in embedding
11+
situations that have their own custom allocator such as various language
12+
runtimes.
13+
14+
A few compilation fixes for various C++ compilers have also been included.
15+
16+
A special thanks to:
17+
18+
* Itay Neeman
19+
* Michael Whittaker
20+
21+
Happy Hacking!
22+
23+
-- Christian
24+
25+
126
Libbson 0.8.4
227
=============
328

build/autotools/Versions.m4

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
m4_define([bson_major_version], [0])
2-
m4_define([bson_minor_version], [8])
3-
m4_define([bson_micro_version], [5])
2+
m4_define([bson_minor_version], [98])
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
77
# set to 0. after release, bump up by 1
8-
m4_define([bson_interface_age], [5])
8+
m4_define([bson_interface_age], [0])
99
m4_define([bson_binary_age], [m4_eval(100 * bson_minor_version + bson_micro_version)])
1010

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

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.8.5
2+
Version: 0.98.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.8.3/libbson-0.8.3.tar.gz
8+
Source0: https://github.com/mongodb/libbson/releases/download/0.98.0/libbson-0.98.0.tar.gz
99
BuildRequires: automake
1010

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

5757
%changelog
58+
* Thu Jul 16 2014 Christian Hergert <[email protected]> - 0.98.0-1
59+
- Bump for 0.98.0.
60+
5861
* Thu Jun 20 2014 Christian Hergert <[email protected]> - 0.8.5-1
5962
- Bump for development builds.
6063

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

doc/version.page

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@
1919
#define BSON_CHECK_VERSION(major, minor, micro)
2020
2121
#define BSON_MAJOR_VERSION 0
22-
#define BSON_MINOR_VERSION 8
23-
#define BSON_MICRO_VERSION 5
24-
#define BSON_VERSION_S "0.8.5"
22+
#define BSON_MINOR_VERSION 98
23+
#define BSON_MICRO_VERSION 0
24+
#define BSON_VERSION_S "0.98.0"
2525
2626
#define BSON_VERSION_HEX (BSON_MAJOR_VERSION << 24 | \
2727
BSON_MINOR_VERSION << 16 | \

0 commit comments

Comments
 (0)