Skip to content
This repository was archived by the owner on Oct 13, 2020. It is now read-only.
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit a794a5a

Browse files
committedJan 28, 2015
1.1.0 Release
Signed-off-by: Jason Carey (hanumantmk) <jcarey@argv.me>
1 parent 11dc2d7 commit a794a5a

File tree

6 files changed

+56
-10
lines changed

6 files changed

+56
-10
lines changed
 

‎CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ set (BSON_MAJOR_VERSION 1)
1313
set (BSON_MINOR_VERSION 1)
1414
set (BSON_MICRO_VERSION 0)
1515
set (BSON_API_VERSION 1.0)
16-
set (BSON_VERSION 1.1.0-rc0)
16+
set (BSON_VERSION 1.1.0)
1717

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

‎NEWS

+43
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,46 @@
1+
Libbson 1.1.0
2+
=============
3+
4+
It is my pleasure to announce to you the release of Libbson-1.1.0.
5+
6+
This release is a stable release with some ABI additions and bugfixes.
7+
8+
The below changes include the changes mentioned in the rc0.
9+
10+
ABI/API changes include:
11+
* RC0
12+
* Deprecation of bson_copy_to_excluding
13+
* Addition of bson_copy_to_excluding_noinit
14+
* Removal of MIN, MAX and ABS macros in favor of BSON_MIN, BSON_MAX and
15+
BSON_ABS. Note this is a breaking source level change if you relied on
16+
these from bson.h. Also note that this is not a breaking ABI change.
17+
* Addition of BSON_ERROR_BUFFER_SIZE macro
18+
19+
Other changes include:
20+
* RC0
21+
* Addition of a versioned ABI for the libbson shared library
22+
* fixed bson_get_monotonic_time fallback when a system monotonic clock can not
23+
be found. Formerly failed to compile with an incorrect call to
24+
bson_gettimeofday
25+
* Allow the "dbref" convention in bson_validate when BSON_VALIDATE_DOLLAR_KEYS
26+
is present
27+
* Support for ISO-8601 or $numberLong dates in bson <-> json parsing
28+
* Quiet various compiler warnings
29+
30+
Thanks to everyone who contributed to the development of this release candidate for
31+
Libbson.
32+
33+
* Adam Midvidy
34+
* Christian Hergert
35+
* Daniel Colchete
36+
* Ivan Suvorov
37+
* Hannes Magnusson
38+
* Jason Carey
39+
* Jérôme Lebel
40+
* Samantha Ritter
41+
42+
-- Jason Carey
43+
144
Libbson 1.1.0-rc0
245
=================
346

‎build/autotools/Versions.m4

+1-1
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], [0])
4-
m4_define([bson_version], [bson_major_version.bson_minor_version.bson_micro_version]-rc0)
4+
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

‎build/rpm/libbson.spec

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
Name: libbson
2-
Version: 1.1.0-rc0
2+
Version: 1.1.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/1.1.0-rc0/libbson-1.1.0-rc0.tar.gz
8+
Source0: https://github.com/mongodb/libbson/releases/download/1.1.0/libbson-1.1.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+
* Wed Jan 28 2015 Jason Carey <jason.carey@mongodb.com> - 1.1.0
59+
- Bump for 1.1.0.
60+
5861
* Wed Nov 12 2014 Jason Carey <jason.carey@mongodb.com> - 1.1.0-rc0-1
5962
- Bump for 1.1.0-rc0.
6063

‎doc/installing.page

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
#define BSON_MAJOR_VERSION 1
2222
#define BSON_MINOR_VERSION 1
2323
#define BSON_MICRO_VERSION 0
24-
#define BSON_VERSION_S "1.1.0-rc0"
24+
#define BSON_VERSION_S "1.1.0"
2525
2626
#define BSON_VERSION_HEX (BSON_MAJOR_VERSION << 24 | \
2727
BSON_MINOR_VERSION << 16 | \

0 commit comments

Comments
 (0)
This repository has been archived.