Skip to content

Commit

Permalink
Merge eb38823 into ed026dc
Browse files Browse the repository at this point in the history
  • Loading branch information
postlund committed Dec 5, 2019
2 parents ed026dc + eb38823 commit 3e705b0
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 8 deletions.
24 changes: 24 additions & 0 deletions CHANGES.rst
@@ -1,6 +1,30 @@
CHANGES
=======

0.4.0a7 (2019-12-05)
--------------------

Noteworthy:

- Better handling of PINs with leading zeros in MRP
- No re-use of ClientSession in AirPlay hopefully fixes dangling
connections (i.e. spinng wheel after playback)
- Documentation finalized

All changes:

ed026dc Add initial script to make releases
514272f Add interface to report device disconnects
6607187 [fix] typo in getting_started.md
703ccc7 Support PINs with leading zeros in MRP
98a4d53 General clean-up of various parts
69a22e0 [fix] Other typo in getting_started.md
b538644 Do not re-use ClientSession for AirPlay
aa8f629 Throw exception if MRP pairing fails
652b039 Finalize documentation for 0.4.0
1cd5508 Add initial text about concepts to documentation
5b51db5 Add badge to LGTM

0.4.0a6 (2019-11-26)
--------------------

Expand Down
5 changes: 2 additions & 3 deletions MANIFEST.in
@@ -1,5 +1,5 @@
include CHANGES.rst
include README.rst
include README.md
include LICENSE.rst
include CONTRIBUTORS.txt
graft pyatv
Expand All @@ -10,5 +10,4 @@ global-exclude *~ __pycache__
recursive-exclude * *.py[co] .*
prune docs/vendor
prune docs/_site
prune docs/.sass-cache
prune docs/old
prune docs/.sass-cache
6 changes: 3 additions & 3 deletions pyatv/const.py
@@ -1,8 +1,8 @@
"""Constants used in the public API."""

MAJOR_VERSION = 0
MINOR_VERSION = 4
PATCH_VERSION = '0a6'
MAJOR_VERSION = '0'
MINOR_VERSION = '4'
PATCH_VERSION = '0a7'
__short_version__ = '{}.{}'.format(MAJOR_VERSION, MINOR_VERSION)
__version__ = '{}.{}'.format(__short_version__, PATCH_VERSION)

Expand Down
2 changes: 1 addition & 1 deletion scripts/release.py
Expand Up @@ -113,7 +113,7 @@ def insert_changes(version):
with open("CHANGES.rst", "w") as fw:
fw.write(CHANGES_TEMPLATE.format(
version=version_str,
separators="=" * len(version_str)))
separators="-" * len(version_str)))
fw.write("\n".join(changes[3:]))


Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
@@ -1,7 +1,7 @@
[aliases]
test=pytest

[wheel]
[bdist_wheel]
universal = 0

[tool:pytest]
Expand Down

0 comments on commit 3e705b0

Please sign in to comment.