diff --git a/CHANGELOG.md b/CHANGELOG.md index 1450fa0..b8b50ae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## v0.15.0 (2024-08-14) + +### Feat + +- Add basic USB-Camera support (#10) + ## v0.14.0 (2024-06-05) ### Feat diff --git a/README.md b/README.md index b86700f..5e7697d 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ A simple mjpeg server for Picamera2. With Spyglass you are able to stream videos from a camera that is supported by [libcamera](http://libcamera.org) like the [Raspberry Pi Camera Module 3](https://www.raspberrypi.com/products/camera-module-3/). -Current version: 0.14.0 +Current version: 0.15.0 ## Prerequisites diff --git a/pyproject.toml b/pyproject.toml index 73105c4..11d9552 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,7 +13,7 @@ mock_use_standalone_module = true [tool.commitizen] name = "cz_conventional_commits" -version = "0.14.0" +version = "0.15.0" tag_format = "v$version" version_files = [ "spyglass/__version__.py", diff --git a/setup.cfg b/setup.cfg index f4a4a48..04bb5d1 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = spyglass -version = 0.14.0 +version = 0.15.0 description = A simple mjpeg server for Picamera2 url = https://github.com/roamingthings/spyglass license = GPL-3.0-only diff --git a/spyglass/__version__.py b/spyglass/__version__.py index 9e78220..9da2f8f 100644 --- a/spyglass/__version__.py +++ b/spyglass/__version__.py @@ -1 +1 @@ -__version__ = "0.14.0" +__version__ = "0.15.0"