Skip to content

Commit 765ecec

Browse files
authored
ARROW-57 Update to latest libbson version (#59)
1 parent f44d3a1 commit 765ecec

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

bindings/python/build-libbson.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ set -o errexit
55

66
# Version of libbson to build
77
# Keep in sync with pymongoarrow.version._MIN_LIBBSON_VERSION
8-
LIBBSON_VERSION=${LIBBSON_VERSION:-"1.17.5"}
8+
LIBBSON_VERSION=${LIBBSON_VERSION:-"1.21.1"}
99
if [ -z "$LIBBSON_VERSION" ]
1010
then
1111
echo "Did not provide a libbson revision ID to build"

bindings/python/docs/source/changelog.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ Changes in Version 0.3.0
88
- Improve error message when schema contains an unsupported type.
99
- Add support for BSON string type.
1010
- Add support for BSON boolean type.
11+
- Upgraded to bundle ``libbson`` 1.21.1. If installing from source, the minimum supported ``libbson`` version is now 1.21.0.
1112
- Dropped Python 3.6 support (it was dropped in `PyArrow` 7.0).
1213

1314
Changes in Version 0.2.0

bindings/python/docs/source/developer/installation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ libbson
3535

3636
PyMongoArrow uses `libbson <http://mongoc.org/libbson/current/index.html>`_.
3737
Detailed instructions for building/installing ``libbson`` can be found
38-
`here <http://mongoc.org/libmongoc/1.17.5/installing.html#installing-the-mongodb-c-driver-libmongoc-and-bson-library-libbson>`_.
38+
`here <http://mongoc.org/libmongoc/1.21.0/installing.html#installing-the-mongodb-c-driver-libmongoc-and-bson-library-libbson>`_.
3939

4040
You can either use a system-provided version of ``libbson`` that is properly
4141
configured for use with ``pkg-config``, or use the provided ``build-libbson.sh` ` script to build it::

bindings/python/pymongoarrow/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414

1515
__version__ = "0.3.0.dev0"
1616

17-
_MIN_LIBBSON_VERSION = "1.17.0"
17+
_MIN_LIBBSON_VERSION = "1.21.0"

0 commit comments

Comments
 (0)