Merge tag '0.13.0' into develop

0.13.0
This commit is contained in:
Tyson Clugg 2015-09-18 17:54:39 +10:00
commit d073fe8c77
2 changed files with 14 additions and 1 deletions

View file

@ -1,6 +1,19 @@
Change Log
==========
0.13.0
------
* Abstract DDPLauncher out from dddp.main.serve to permit use from other contexts.
* Allow Ctrl-C (Break) handling at any time.
* Only run async DB connection when PostgresGreenlet is running.
* Remove unused import `os.path` from setup.
* Include `name` and `levelno` attributes in DDP emitted log records.
* Don't attempt to monkey patch more than once.
* Include exception info in `logger.error` logging call.
* Update project classifiers to show specific versions of supported dependencies (fixes #6).
* Use sane default options for `python setup.py bdist_wheel`.
* Fixed README link to meteor - thanks @LegoStormtroopr.
0.12.2
------
* Set blank=True on AleaIdField, allowing adding items without inventing

View file

@ -44,7 +44,7 @@ CLASSIFIERS = [
setup(
name='django-ddp',
version='0.12.2',
version='0.13.0',
description=__doc__,
long_description=open('README.rst').read(),
author='Tyson Clugg',