From 07b3f23ebeaa58a45f04ce1dd62aa45db03e1d6a Mon Sep 17 00:00:00 2001 From: David Plowman Date: Mon, 17 Jun 2024 11:21:57 +0100 Subject: [PATCH] Update setup.py and CHANGELOG.md for 0.3.19 release --- CHANGELOG.md | 13 +++++++++++++ setup.py | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a868aa4a..7b3e4c19 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,19 @@ ### Changed +## 0.3.19 Beta Release 18 + +### Added + +* Add an example showing how to forward images to other processes using zero-copy. +* Add a context manager method for capturing requests, e.g. `with picam2.captured_request() as r:` +* Encoders can skip frames, e.g. run at half the rate of the camera. + +### Changed + +* Configuration alignment fixed on Pi 5. +* Improve support for displays without alpha blending. + ## 0.3.18 Beta Release 17 ### Added diff --git a/setup.py b/setup.py index f7d8ce1e..423fccf8 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ setup( name='picamera2', - version='0.3.18', + version='0.3.19', description='The libcamera-based Python interface to Raspberry Pi cameras, based on the original Picamera library', long_description=long_description, long_description_content_type='text/markdown',