Skip to content

Commit

Permalink
Merge branch 'release/0.4.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
robertmrk committed Jan 4, 2019
2 parents 8d72164 + e170ecc commit 87c3d46
Show file tree
Hide file tree
Showing 34 changed files with 972 additions and 361 deletions.
18 changes: 10 additions & 8 deletions .travis.yml
@@ -1,11 +1,13 @@
dist: xenial
sudo: required

language: python
python:
- "3.6"
before_install:
- pip install -q coveralls
install:
- pip install .[tests]
script:
- coverage run -m unittest discover tests
after_success:
- coveralls
- "3.7"

services:
- docker

install: pip install tox-travis
script: tox
3 changes: 3 additions & 0 deletions MANIFEST.in
Expand Up @@ -2,8 +2,11 @@ include LICENSE.txt
include DESCRIPTION.rst
include README.rst
include .pylintrc
include aiocometd/py.typed
graft tests
graft docs
graft examples
global-exclude *.pyc
global-exclude .python-version
prune docs/build
prune venv*
10 changes: 5 additions & 5 deletions aiocometd/__init__.py
@@ -1,11 +1,11 @@
"""CometD client for asyncio"""
import logging

from ._metadata import VERSION as __version__ # noqa: F401
from .client import Client # noqa: F401
from .constants import ConnectionType # noqa: F401
from .extensions import Extension, AuthExtension # noqa: F401
from . import transports # noqa: F401
from aiocometd._metadata import VERSION as __version__ # noqa: F401
from aiocometd.client import Client # noqa: F401
from aiocometd.constants import ConnectionType # noqa: F401
from aiocometd.extensions import Extension, AuthExtension # noqa: F401
from aiocometd import transports # noqa: F401

# Create a default handler to avoid warnings in applications without logging
# configuration
Expand Down
2 changes: 1 addition & 1 deletion aiocometd/_metadata.py
Expand Up @@ -3,6 +3,6 @@
DESCRIPTION = "CometD client for asyncio"
KEYWORDS = "asyncio aiohttp comet cometd bayeux push streaming"
URL = "https://github.com/robertmrk/aiocometd"
VERSION = "0.3.1"
VERSION = "0.4.0"
AUTHOR = "Róbert Márki"
AUTHOR_EMAIL = "gsmiko@gmail.com"

0 comments on commit 87c3d46

Please sign in to comment.