Skip to content

Commit aca9a5a

Browse files
committed
Release 0.14.1
1 parent e551954 commit aca9a5a

File tree

3 files changed

+102
-1
lines changed

3 files changed

+102
-1
lines changed

CHANGES.md

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,74 @@
11
# CHANGES
22

3+
## 0.14.1 Marge (2023-09-27)
4+
5+
Minor release coming up today:
6+
7+
* Fix Companion credentials not being saved when pairing
8+
* Actually use storage in the wizard (atvremote)
9+
* Add FileStorage.default_storage() to get the same storage
10+
as used by scripts shipped with pyatv (i.e. you can share
11+
credentials with your applications)
12+
* Add setting to force AirPlay version to use with RAOP
13+
* Add settings for RAOP control and timing ports
14+
15+
**Changes:**
16+
17+
*Protocol: Companion:*
18+
19+
```
20+
e551954 companion: Fix credentials not saved
21+
```
22+
23+
*Protocol: RAOP:*
24+
25+
```
26+
c17f304 raop: Add protocol_version setting
27+
391be8b raop: Add settings for timing and control ports
28+
```
29+
30+
*Script: atvremote:*
31+
32+
```
33+
fa2f7b1 atvremote: Fix storage passing to pair
34+
```
35+
36+
*Other:*
37+
38+
```
39+
fd7135b tests: Add test for atvremote wizard
40+
e8a812d tests: Migrate scripts tests to pytest
41+
6704359 docs: Add minor change template
42+
74d2de5 storage: Add FileStorage.default_storage
43+
621adff docs: Some updates to README.md
44+
f13a353 docs: More link fixes
45+
d394708 storage: Use pydantic-extra-types for MAC
46+
```
47+
48+
**All changes:**
49+
50+
```
51+
e551954 companion: Fix credentials not saved
52+
1c4b4d3 build(deps): Bump types-protobuf in /requirements
53+
91fdc71 build(deps): Bump zeroconf from 0.108.0 to 0.112.0 in /requirements
54+
c17f304 raop: Add protocol_version setting
55+
fd7135b tests: Add test for atvremote wizard
56+
e8a812d tests: Migrate scripts tests to pytest
57+
fa2f7b1 atvremote: Fix storage passing to pair
58+
95d7d54 build(deps): Bump deepdiff from 6.4.1 to 6.5.0 in /requirements
59+
6704359 docs: Add minor change template
60+
712f105 build(deps): Bump zeroconf from 0.97.0 to 0.108.0 in /requirements
61+
46d50f0 build(deps): Bump black from 23.7.0 to 23.9.1 in /requirements
62+
391be8b raop: Add settings for timing and control ports
63+
2808c5d build(deps): Bump pytest from 7.4.1 to 7.4.2 in /requirements
64+
d426ae8 build(deps): Bump protobuf from 4.24.2 to 4.24.3 in /requirements
65+
01e4cc0 build(deps): Bump pytest-aiohttp from 1.0.4 to 1.0.5 in /requirements
66+
74d2de5 storage: Add FileStorage.default_storage
67+
621adff docs: Some updates to README.md
68+
f13a353 docs: More link fixes
69+
d394708 storage: Use pydantic-extra-types for MAC
70+
```
71+
372
## 0.14.0 Lisa (2023-09-04)
473

574
Finally time for a new release and this (despite the few number

docs/_includes/atvremote_scan

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
```raw
2+
$ atvremote acan
3+
Scan Results
4+
========================================
5+
Name: Living Room
6+
Model/SW: Apple TV 4K, tvOS 16.6 build 20M73
7+
Address: 10.0.0.5
8+
MAC: AA:BB:CC:DD:EE:FF
9+
Deep Sleep: True
10+
Identifiers:
11+
- 01234567-89AB-CDEF-0123-4567890ABCDE
12+
- AA:BB:CC:DD:EE:FF
13+
- 01234567-89AB-CDEF-0123-AAAAAAAAAAAA
14+
- AABBCCDDEEFF
15+
Services:
16+
- Protocol: Companion, Port: 49153, Credentials:None, Requires Password: False, Password: None, Pairing: Mandatory
17+
- Protocol: AirPlay, Port: 7000, Credentials: None, Requires Password: False, Password: None, Pairing: Mandatory
18+
- Protocol: MRP, Port: 49154, Credentials: None, Requires Password: False, Password: None, Pairing: NotNeeded (Disabled)
19+
- Protocol: RAOP, Port: 7000, Credentials: None, Requires Password: False, Password: None, Pairing: Mandatory
20+
21+
Name: Pierre's AirPort Express
22+
Model/SW: AirPort Express (gen 2), AirPortOS 7.8.1
23+
Address: 10.0.0.6
24+
MAC: BB:BB:BB:BB:BB:BB
25+
Deep Sleep: False
26+
Identifiers:
27+
- BB:BB:BB:BB:BB:BB
28+
- BBBBBBBBBBBB
29+
Services:
30+
- Protocol: AirPlay, Port: 7000, Credentials: None, Requires Password: False, Password: None, Pairing: NotNeeded
31+
- Protocol: RAOP, Port: 7000, Credentials: None, Requires Password: False, Password: None, Pairing: NotNeeded
32+
```

pyatv/const.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
MAJOR_VERSION = "0"
77
MINOR_VERSION = "14"
8-
PATCH_VERSION = "0"
8+
PATCH_VERSION = "1"
99
__short_version__ = f"{MAJOR_VERSION}.{MINOR_VERSION}"
1010
__version__ = f"{__short_version__}.{PATCH_VERSION}"
1111

0 commit comments

Comments
 (0)