Skip to content

Commit 9f0a7b6

Browse files
author
Mike Dirolf
committed
BUMP 0.16 support encoding uuid.UUID instances, fix for explain with limits, removing some deprecated functionality
1 parent 19d6cf4 commit 9f0a7b6

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

pymongo/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
ALL = 2
3434
"""Profile all operations."""
3535

36-
version = "0.15.2"
36+
version = "0.16"
3737
"""Current version of PyMongo."""
3838

3939
Connection = PyMongo_Connection

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,16 +126,17 @@ def build_extension(self, ext):
126126
version=version,
127127
description="Python driver for MongoDB <http://www.mongodb.org>",
128128
long_description=readme_content,
129-
author="10gen",
129+
author="Mike Dirolf",
130130
author_email="mongodb-user@googlegroups.com",
131131
url="http://github.com/mongodb/mongo-python-driver",
132+
keywords=["mongo", "mongodb", "pymongo", "gridfs"]
132133
packages=["pymongo", "gridfs"],
133134
install_requires=requirements,
134135
features=features,
135136
license="Apache License, Version 2.0",
136137
test_suite="nose.collector",
137138
classifiers=[
138-
"Development Status :: 4 - Beta",
139+
"Development Status :: 5 - Production/Stable",
139140
"Intended Audience :: Developers",
140141
"License :: OSI Approved :: Apache Software License",
141142
"Operating System :: MacOS :: MacOS X",

0 commit comments

Comments
 (0)