We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 005e04b commit 3c73edcCopy full SHA for 3c73edc
setup.py
@@ -43,7 +43,7 @@
43
44
setup(
45
name="python-bsonjs",
46
- version="0.1.1",
+ version="0.2.0.dev0",
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.1"))) {
+ PyString_FromString("0.2.0.dev0"))) {
259
Py_DECREF(module);
260
INITERROR;
261
}
0 commit comments