BUMP 1.2.1 (minor) see changelog

This commit is contained in:
Mike Dirolf 2009-12-10 15:52:28 -05:00
parent fb53f85fe8
commit 18bb4bacc2
2 changed files with 13 additions and 1 deletions

View File

@ -1,6 +1,18 @@
Changelog
=========
Changes in Version 1.2.1
------------------------
- add :doc:`changelog` to docs
- add ``setup.py doc --test`` to run doctests for tutorial, examples
- move most examples to Sphinx docs (and remove from *examples/*
directory)
- raise :class:`~pymongo.errors.InvalidId` instead of
:class:`TypeError` when passing a 24 character string to
:class:`~pymongo.objectid.ObjectId` that contains non-hexadecimal
characters
- allow :class:`unicode` instances for :class:`~pymongo.objectid.ObjectId` init
Changes in Version 1.2
----------------------
- `spec` parameter for :meth:`~pymongo.collection.Collection.remove` is

View File

@ -28,7 +28,7 @@ SLOW_ONLY = 1
ALL = 2
"""Profile all operations."""
version = "1.2+"
version = "1.2.1"
"""Current version of PyMongo."""
Connection = PyMongo_Connection