diff --git a/debian/changelog b/debian/changelog index 7958b1d7..8e979d8e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,16 @@ +picamera (1.2-1) stable; urgency=low + + * A bug introduced in 1.1 caused split_recording to fail if it was preceded + by a video-port-based image capture (#49) + * The documentation was enhanced to try and full explain the discrepancy + between preview and capture resolution, and to provide some insight into + the underlying workings of the camera (#23) + * A new property was introduced for configuring the preview's layer at + runtime although this probably won't find use until OpenGL overlays are + explored (#48) + + -- Dave Hughes Sun, 02 Feb 2014 03:18:19 +0000 + picamera (1.1-1) stable; urgency=low * A nasty race condition was discovered which led to crashes with diff --git a/docs/changelog.rst b/docs/changelog.rst index 7949e1bc..e758d9dd 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -5,6 +5,25 @@ Change log ========== +Release 1.2 (2014-02-02) +======================== + +1.2 was mostly a bug fix release: + +* A bug introduced in 1.1 caused :meth:`~picamera.PiCamera.split_recording` + to fail if it was preceded by a video-port-based image capture (`#49`_) +* The documentation was enhanced to try and full explain the discrepancy + between preview and capture resolution, and to provide some insight into + the underlying workings of the camera (`#23`_) +* A new property was introduced for configuring the preview's layer at runtime + although this probably won't find use until OpenGL overlays are explored + (`#48`_) + +.. _#23: https://github.com/waveform80/picamera/issues/23 +.. _#48: https://github.com/waveform80/picamera/issues/48 +.. _#49: https://github.com/waveform80/picamera/issues/49 + + Release 1.1 (2014-01-25) ======================== diff --git a/setup.py b/setup.py index a3784035..25b82d9e 100644 --- a/setup.py +++ b/setup.py @@ -53,7 +53,7 @@ pass __project__ = 'picamera' -__version__ = '1.1' +__version__ = '1.2' __author__ = 'Dave Hughes' __author_email__ = 'dave@waveform.org.uk' __url__ = 'https://pypi.python.org/pypi/picamera/'