Skip to content

Commit a17db65

Browse files
authored
BUMP 0.3.0 (#41)
1 parent 0974499 commit a17db65

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ About
1313
=====
1414

1515
A fast BSON to MongoDB Extended JSON converter for Python that uses
16-
`libbson <http://mongoc.org/libbson/1.6.2/>`_.
16+
`libbson <http://mongoc.org/libbson/1.20.0/>`_.
1717

1818
Installation
1919
============

setup.py

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

3636
setup(
3737
name="python-bsonjs",
38-
version="0.3.0.dev0",
38+
version="0.3.0",
3939
description="A library for converting between BSON and JSON.",
4040
long_description=description,
4141
author="Shane Harvey",

src/bsonjs.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ PyInit_bsonjs(VOID)
263263

264264
if (PyModule_AddObject(module,
265265
"__version__",
266-
PyUnicode_FromString("0.3.0.dev0"))) {
266+
PyUnicode_FromString("0.3.0"))) {
267267
Py_DECREF(module);
268268
INITERROR;
269269
}

0 commit comments

Comments
 (0)