Skip to content

Commit

Permalink
Bump version 1.9.0
Browse files Browse the repository at this point in the history
Breaking changes
* Drop support for Python 3.6.

New features
* Add new async APIs.

Minor fixes
* Change all system properties, such as hardware_version, to be parsed
  out.
* Fix the audio enabled to correctly return the value for the given
  channel.  This is equivelant to the video fix added in 1.8.1.
* Handle errors fetching the record mode more gracefully.
* Fix the move left/right PTZ commands to take speed as "horizontal".
* Change PTZ commands to return bool rather than str with "ok".
  • Loading branch information
flacjacket committed Sep 16, 2021
1 parent 180f1ea commit 0d16452
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
define([VERSION_MAJOR], [1])
define([VERSION_MINOR], [8])
define([VERSION_FIX], [1])
define([VERSION_MINOR], [9])
define([VERSION_FIX], [0])
define([VERSION_NUMBER], VERSION_MAJOR[.]VERSION_MINOR[.]VERSION_FIX)
define([VERSION_SUFFIX], [_master])

Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ def readme():

setup(
name="amcrest",
version="1.8.1",
version="1.9.0",
description="Python wrapper implementation for Amcrest cameras.",
long_description=readme(),
author="Douglas Schilling Landgraf, Marcelo Moreira de Mello",
Expand All @@ -33,7 +33,6 @@ def readme():
keywords="amcrest camera python",
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
Expand Down

0 comments on commit 0d16452

Please sign in to comment.