Skip to content

Commit

Permalink
Pushed to version 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ol-iver committed Apr 23, 2017
1 parent a2ea7a8 commit 0111b2b
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 7 deletions.
2 changes: 1 addition & 1 deletion HELP.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ DATA
__title__ = 'denonavr'

VERSION
0.3.2
0.4.0

====================================================================================

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# denonavr
[![Build Status](https://travis-ci.org/scarface-4711/denonavr.svg?branch=master)](https://travis-ci.org/scarface-4711/denonavr)

Automation Library for Denon AVR receivers - current version 0.3.2
Automation Library for Denon AVR receivers - current version 0.4.0

## Installation

Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ denonavr

|Build Status|

Automation Library for Denon AVR receivers - current version 0.3.2
Automation Library for Denon AVR receivers - current version 0.4.0

Installation
------------
Expand Down
3 changes: 2 additions & 1 deletion denonavr/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
:copyright: (c) 2016 by Oliver Goetz.
:license: MIT, see LICENSE for more details.
"""
# pylint: disable=no-else-return

# Set default logging handler to avoid "No handler found" warnings.
import logging
Expand All @@ -17,7 +18,7 @@
logging.getLogger(__name__).addHandler(logging.NullHandler())

__title__ = "denonavr"
__version__ = "0.3.2"
__version__ = "0.4.0"


def discover():
Expand Down
6 changes: 4 additions & 2 deletions denonavr/denonavr.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,14 @@
:license: MIT, see LICENSE for more details.
"""
# pylint: disable=too-many-lines
# pylint: disable=no-else-return

from io import BytesIO
import logging
import time
import re
import html
import xml.etree.cElementTree as ET
import xml.etree.ElementTree as ET
import requests

_LOGGER = logging.getLogger('DenonAVR')
Expand Down Expand Up @@ -724,7 +726,7 @@ def _update_media_data(self):

def _get_status_from_xml_tags(self, root, relevant_tags):
"""
Internal method to get relevant status tags from XML structure.
Get relevant status tags from XML structure with this internal method.
Status is saved to internal attributes.
Return dictionary of tags not found in XML.
Expand Down
1 change: 1 addition & 0 deletions denonavr/ssdp.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
:copyright: (c) 2016 by Oliver Goetz.
:license: MIT, see LICENSE for more details.
"""
# pylint: disable=no-else-return

import logging
import socket
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from setuptools import find_packages, setup

setup(name='denonavr',
version='0.3.2',
version='0.4.0',
description='Automation Library for Denon AVR receivers',
long_description='Automation Library for Denon AVR receivers',
url='https://github.com/scarface-4711/denonavr',
Expand Down

0 comments on commit 0111b2b

Please sign in to comment.