Skip to content

Commit 9b0e190

Browse files
author
semantic-release
committedJan 15, 2025·
0.3.0
Automatically generated by python-semantic-release
1 parent 579f6a4 commit 9b0e190

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed
 

‎CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## v0.3.0 (2025-01-15)
4+
5+
### Features
6+
7+
- Improve example to show how to stop the watcher (#6) ([`27a9a14`](https://github.com/Bluetooth-Devices/aiousbwatcher/commit/27a9a142589444f167ab5d576975fa3409c40776))
8+
39
## v0.2.0 (2025-01-15)
410

511
### Features

‎docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
project = "asyncio usb device watcher"
1616
copyright = "2025, J. Nick Koston"
1717
author = "J. Nick Koston"
18-
release = "0.2.0"
18+
release = "0.3.0"
1919

2020
# -- General configuration ---------------------------------------------------
2121
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration

‎pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ requires = [ "setuptools" ]
44

55
[project]
66
name = "aiousbwatcher"
7-
version = "0.2.0"
7+
version = "0.3.0"
88
description = "Watch for USB devices to be plugged and unplugged"
99
readme = "README.md"
1010
license = { text = "MIT" }

‎src/aiousbwatcher/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.2.0"
1+
__version__ = "0.3.0"
22

33
from .impl import AIOUSBWatcher, InotifyNotAvailableError
44

0 commit comments

Comments
 (0)
Please sign in to comment.