Skip to content

Commit

Permalink
Prepare v1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tkem committed Sep 12, 2015
1 parent 580d7de commit d269e2b
Show file tree
Hide file tree
Showing 5 changed files with 37 additions and 36 deletions.
7 changes: 2 additions & 5 deletions .coveragerc
@@ -1,5 +1,2 @@
[report]
omit =
*/pyshared/*
*/python?.?/*
*/site-packages/nose/*
[run]
source = mopidy_dleyna
4 changes: 3 additions & 1 deletion .travis.yml
@@ -1,3 +1,5 @@
sudo: false

language: python

python:
Expand All @@ -22,4 +24,4 @@ script:
- "tox -e $TOX_ENV"

after_success:
- "if [ $TOX_ENV == 'py27' ]; then pip install coveralls; coveralls; fi"
- "if [ $TOX_ENV == 'py27' ]; then pip install --pre coveralls; coveralls; fi"
54 changes: 30 additions & 24 deletions CHANGES.rst
@@ -1,5 +1,11 @@
1.0.0 2015-08-21
----------------
v1.0.1 (2015-09-12)
-------------------

- Add workaround for permanently lost media servers.


v1.0.0 (2015-08-21)
-------------------

- Add ``upnp_browse_limit`` config value.

Expand All @@ -10,8 +16,8 @@
- Improve debug output.


0.5.3 2015-08-19
----------------
v0.5.3 (2015-08-19)
-------------------

- Fix lost server handling.

Expand All @@ -20,8 +26,8 @@
- Improve log messages.


0.5.2 2015-08-18
----------------
v0.5.2 (2015-08-18)
-------------------

- Move mapping helpers to translator module.

Expand All @@ -30,32 +36,32 @@
- Update `README.rst`.


0.5.1 2015-08-14
----------------
v0.5.1 (2015-08-14)
-------------------

- Start/stop D-Bus daemon from backend.


0.5.0 2015-08-14
----------------
v0.5.0 (2015-08-14)
-------------------

- Add support for album art.


0.4.2 2015-08-14
----------------
v0.4.2 (2015-08-14)
-------------------

- Use asynchronous D-Bus calls to improve performance on Raspberry Pi.


0.4.1 2015-08-11
----------------
v0.4.1 (2015-08-11)
-------------------

- Add workaround for integer conversion issues on 32 bit systems.


0.4.0 2015-08-11
----------------
v0.4.0 (2015-08-11)
-------------------

- Start session bus on headless systems or when running as a daemon.

Expand All @@ -66,27 +72,27 @@
- Peristent URI handling.


0.3.1 2015-04-11
----------------
v0.3.1 (2015-04-11)
-------------------

- Perform search asynchronously.


0.3.0 2015-04-10
----------------
v0.3.0 (2015-04-10)
-------------------

- Add basic search capabilities.

- Return proper reference types when browsing.


0.2.0 2015-04-08
----------------
v0.2.0 (2015-04-08)
-------------------

- Add workaround for `minidlna` crashing on empty filter.


0.1.0 2015-04-07
----------------
v0.1.0 (2015-04-07)
-------------------

- Initial release.
2 changes: 1 addition & 1 deletion mopidy_dleyna/__init__.py
Expand Up @@ -4,7 +4,7 @@

from mopidy import config, exceptions, ext

__version__ = '1.0.0'
__version__ = '1.0.1'


class Extension(ext.Extension):
Expand Down
6 changes: 1 addition & 5 deletions tox.ini
Expand Up @@ -11,11 +11,7 @@ deps =
pytest-xdist
install_command = pip install --allow-unverified=mopidy --pre {opts} {packages}
commands =
py.test \
--basetemp={envtmpdir} \
--junit-xml=xunit-{envname}.xml \
--cov=mopidy_dleyna --cov-report=term-missing \
{posargs}
py.test --basetemp={envtmpdir} --cov --cov-report=term-missing {posargs}

[testenv:flake8]
deps =
Expand Down

0 comments on commit d269e2b

Please sign in to comment.