From 8432f142fe47786b5c0bca262cb22ebdc657cb26 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 10 Jun 2023 10:55:25 +0000 Subject: [PATCH] =?UTF-8?q?bump:=20version=200.11.0=20=E2=86=92=200.11.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 6 ++++++ README.md | 2 +- pyproject.toml | 2 +- setup.cfg | 2 +- spyglass/__version__.py | 2 +- 5 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4e96f5a..9934f4c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## v0.11.1 (2023-06-10) + +### Fix + +- URL routing to accept requests that contain unused parameters (#42) + ## v0.11.0 (2023-03-19) ### Feat diff --git a/README.md b/README.md index 8c4c65d..68716bf 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.11.0 +Current version: 0.11.1 ## Prerequisites diff --git a/pyproject.toml b/pyproject.toml index eeedd65..d681a96 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,7 +13,7 @@ mock_use_standalone_module = true [tool.commitizen] name = "cz_conventional_commits" -version = "0.11.0" +version = "0.11.1" tag_format = "v$version" version_files = [ "spyglass/__version__.py", diff --git a/setup.cfg b/setup.cfg index 241bdda..f01da6f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = spyglass -version = 0.11.0 +version = 0.11.1 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 ae6db5f..fee46bd 100644 --- a/spyglass/__version__.py +++ b/spyglass/__version__.py @@ -1 +1 @@ -__version__ = "0.11.0" +__version__ = "0.11.1"