Skip to content

Commit b2c2757

Browse files
2.0
1 parent 7ed9be8 commit b2c2757

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

readme.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,17 @@ Docs and examples can be found [here](https://pyartnet.readthedocs.io/en/latest/
1414

1515

1616
# Changelog
17-
#### 1.1.0 (2025-XX-XX)
17+
#### 2.0 (2025-11-04)
18+
- **Breaking change**:
19+
Nodes now need to be run through an async context manager, e.g.:
20+
```python
21+
async with ArtNetNode.create('IP') as node:
22+
...
23+
```
1824
- Added support for transmitting multiple universes in sync
19-
- used UV
25+
- Added support for transmitting SACN through the broadcast address
2026
- ruff and typing fixes
27+
- used UV
2128

2229
#### 1.0.1 (2023-02-20)
2330
- Fixed an issue where consecutive fades would not start from the correct value

src/pyartnet/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '1.0.1'
1+
__version__ = '2.0'

0 commit comments

Comments
 (0)