Skip to content

Commit

Permalink
Release 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
masmu committed Mar 9, 2016
1 parent 0dd20ff commit ecfd32a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 14 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ If I could help you or if you like my work, you can buy me a [coffee, a beer or

## Changelog ##

* __master__ - (_2016-03-08_)
* __0.5.0__ - (_2016-03-09_)
- Set Yamaha devices to the appropriate mode before playing (thanks to [hlchau](https://github.com/hlchau)) (new dependency: `python-lxml`)
- Fixed a bug where some SSDP messages could not get parsed correctly
- Also support media renderers identifying as `urn:schemas-upnp-org:device:MediaRenderer:2`
Expand Down
14 changes: 1 addition & 13 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,21 +15,9 @@
# You should have received a copy of the GNU General Public License
# along with pulseaudio-dlna. If not, see <http://www.gnu.org/licenses/>.

import os
import re
import setuptools


def get_version():
path = os.path.abspath(os.path.dirname(__file__))
path = os.path.join(path, "debian", "changelog")
ex = r"pulseaudio-dlna \((\d+\.\d+\.\d+(\.\d+)?)\) .*$"
with open(path) as f:
releases = f.readlines()
releases = [re.match(ex, i) for i in releases]
releases = [i.group(1) for i in releases if i]
return releases[0]

setuptools.setup(
name="pulseaudio-dlna",
author="Massimo Mund",
Expand All @@ -46,7 +34,7 @@ def get_version():
"Topic :: Multimedia :: Sound/Audio",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
],
version=get_version(),
version='0.5.0',
py_modules=[],
packages=setuptools.find_packages(),
install_requires=[
Expand Down

0 comments on commit ecfd32a

Please sign in to comment.