Merge tag '0.19.1' into develop

0.19.1 (2016-01-28)
-------------------
* Consistent handling of client errors (`MeteorError`) which shouldn't
  be logged.
* Reduce wheel size from 204KB to 68KB by removing dddp.test package.
* Reduce sdist size from 10MB to 209KB by removing Meteor build from
  test suite.
* Improve test suite with coverage now 65% when tested via Travis CI.
* Dropped support for Python 3.3.
* Fix for #3 -- drop support for Django 1.7, add support for Django 1.9
  - thanks @schinckel.
* Re-raise exceptions from DDP WebSocket handlers rather than swallowing
  them.
* Fix for #33 -- Add `meteor_autoupdate_clientVersions` publication.
This commit is contained in:
Tyson Clugg 2016-01-28 16:28:09 +11:00
commit 1e1954b06f
4 changed files with 7 additions and 5 deletions

View file

@ -4,12 +4,14 @@ Change Log
All notable changes to this project will be documented in this file.
This project adheres to `Semantic Versioning <http://semver.org/>`_.
0.19.1 (2016-01-XX)
0.19.1 (2016-01-28)
-------------------
* Consistent handling of client errors (`MeteorError`) which shouldn't
be logged.
* Reduce wheel size from 204KB to 68KB by removing dddp.test package.
* Reduce sdist size from 10MB to 209KB by removing Meteor build from
test suite.
* Improve test suite with coverage now 62% when tested via Travis CI.
* Improve test suite with coverage now 65% when tested via Travis CI.
* Dropped support for Python 3.3.
* Fix for #3 -- drop support for Django 1.7, add support for Django 1.9
- thanks @schinckel.

View file

@ -4,7 +4,7 @@ import sys
from gevent.local import local
from dddp import alea
__version__ = '0.19.0'
__version__ = '0.19.1'
__url__ = 'https://github.com/django-ddp/django-ddp'
default_app_config = 'dddp.apps.DjangoDDPConfig'

View file

@ -90,7 +90,7 @@ copyright = u'2015, Tyson Clugg'
# The short X.Y version.
version = '0.19'
# The full version, including alpha/beta/rc tags.
release = '0.19.0'
release = '0.19.1'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.

2
setup.py Executable file → Normal file
View file

@ -178,7 +178,7 @@ CLASSIFIERS = [
setuptools.setup(
name='django-ddp',
version='0.19.0',
version='0.19.1',
description=__doc__,
long_description=open('README.rst').read(),
author='Tyson Clugg',