Skip to content

Commit 6d322e3

Browse files
author
semantic-release
committed
1.1.0
Automatically generated by python-semantic-release
1 parent 122afa6 commit 6d322e3

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+
## v1.1.0 (2025-01-15)
4+
5+
### Features
6+
7+
- Use `path.walk` instead of recursive `path.iterdir` (#7) ([`122afa6`](https://github.com/Bluetooth-Devices/aiousbwatcher/commit/122afa6d61df188bf4bee6a964c08c050f797218))
8+
39
## v1.0.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 = "1.0.0"
18+
release = "1.1.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 = "1.0.0"
7+
version = "1.1.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__ = "1.0.0"
1+
__version__ = "1.1.0"
22

33
from .impl import AIOUSBWatcher, InotifyNotAvailableError
44

0 commit comments

Comments
 (0)