From 9fca203372d9e6af90a0764d8d8ec6449629314b Mon Sep 17 00:00:00 2001 From: "Peter F. Patel-Schneider" Date: Sat, 25 Sep 2021 13:53:13 -0400 Subject: [PATCH] release 1.0.7rc3 --- ChangeLog | 8 ++++++++ docs/_config.yml | 2 +- lib/solaar/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index e93f3be8..cbe4324d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +1.0.7rc3: + * Don't use time_ns so as not to require Python 3.7 + * Correctly determine setting box in change_click method + * Handle fake Nano connection notifications + * Lock on actual handle, not just on handle number + * Mark Nano receiver C52F as not unpairing + * Upgrade pairing/unpairing documentation + 1.0.7rc2: * Don't signal status change when battery changes from None to None. * Add Japanese translation diff --git a/docs/_config.yml b/docs/_config.yml index 41e3da85..32684046 100644 --- a/docs/_config.yml +++ b/docs/_config.yml @@ -4,7 +4,7 @@ tagline: Linux Device Manager for Logitech Unifying Receivers and Devices. owner: pwr-Solaar owner_url: https://github.com/pwr-Solaar repository: pwr-Solaar/Solaar -version: 1.0.7rc2 +version: 1.0.7rc3 show_downloads: false encoding: utf-8 theme: jekyll-theme-slate diff --git a/lib/solaar/__init__.py b/lib/solaar/__init__.py index 1a039042..bb45c6c1 100644 --- a/lib/solaar/__init__.py +++ b/lib/solaar/__init__.py @@ -19,5 +19,5 @@ from __future__ import absolute_import, division, print_function, unicode_literals -__version__ = '1.0.7rc2' +__version__ = '1.0.7rc3' NAME = 'Solaar' diff --git a/setup.py b/setup.py index 4f8bf01c..0637ae12 100755 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ except ImportError: from distutils.core import setup # from solaar import NAME, __version__ -__version__ = '1.0.7rc2' +__version__ = '1.0.7rc3' NAME = 'Solaar'