We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8063dcc commit 005e04bCopy full SHA for 005e04b
setup.py
@@ -43,7 +43,7 @@
43
44
setup(
45
name="python-bsonjs",
46
- version="0.1.0",
+ version="0.1.1",
47
description="A library for converting between BSON and JSON.",
48
long_description=description,
49
author="Shane Harvey",
src/bsonjs.c
@@ -255,7 +255,7 @@ initbsonjs(VOID)
255
256
if (PyModule_AddObject(module,
257
"__version__",
258
- PyString_FromString("0.1.0"))) {
+ PyString_FromString("0.1.1"))) {
259
Py_DECREF(module);
260
INITERROR;
261
}
0 commit comments