mirror of
https://github.com/jazzband/django-ddp.git
synced 2026-03-16 22:40:24 +00:00
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:
commit
1e1954b06f
4 changed files with 7 additions and 5 deletions
|
|
@ -4,12 +4,14 @@ Change Log
|
||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
This project adheres to `Semantic Versioning <http://semver.org/>`_.
|
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 wheel size from 204KB to 68KB by removing dddp.test package.
|
||||||
* Reduce sdist size from 10MB to 209KB by removing Meteor build from
|
* Reduce sdist size from 10MB to 209KB by removing Meteor build from
|
||||||
test suite.
|
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.
|
* Dropped support for Python 3.3.
|
||||||
* Fix for #3 -- drop support for Django 1.7, add support for Django 1.9
|
* Fix for #3 -- drop support for Django 1.7, add support for Django 1.9
|
||||||
- thanks @schinckel.
|
- thanks @schinckel.
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@ import sys
|
||||||
from gevent.local import local
|
from gevent.local import local
|
||||||
from dddp import alea
|
from dddp import alea
|
||||||
|
|
||||||
__version__ = '0.19.0'
|
__version__ = '0.19.1'
|
||||||
__url__ = 'https://github.com/django-ddp/django-ddp'
|
__url__ = 'https://github.com/django-ddp/django-ddp'
|
||||||
|
|
||||||
default_app_config = 'dddp.apps.DjangoDDPConfig'
|
default_app_config = 'dddp.apps.DjangoDDPConfig'
|
||||||
|
|
|
||||||
|
|
@ -90,7 +90,7 @@ copyright = u'2015, Tyson Clugg'
|
||||||
# The short X.Y version.
|
# The short X.Y version.
|
||||||
version = '0.19'
|
version = '0.19'
|
||||||
# The full version, including alpha/beta/rc tags.
|
# 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
|
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||||
# for a list of supported languages.
|
# for a list of supported languages.
|
||||||
|
|
|
||||||
2
setup.py
Executable file → Normal file
2
setup.py
Executable file → Normal file
|
|
@ -178,7 +178,7 @@ CLASSIFIERS = [
|
||||||
|
|
||||||
setuptools.setup(
|
setuptools.setup(
|
||||||
name='django-ddp',
|
name='django-ddp',
|
||||||
version='0.19.0',
|
version='0.19.1',
|
||||||
description=__doc__,
|
description=__doc__,
|
||||||
long_description=open('README.rst').read(),
|
long_description=open('README.rst').read(),
|
||||||
author='Tyson Clugg',
|
author='Tyson Clugg',
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue