diff --git a/ChangeLog b/ChangeLog index 3d2c3905..348208cb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,10 @@ -1.0.5rc2: +1.0.5: + * Update documentation on devices forgetting settings. + * Improve help messages + * Fix bug in finding receiver to pair * Solaar config command can set keyed settings. + +1.0.5rc2: * Add setting for polling rate * Use long HID++ messages for all 2.0 requests * Update German, Italian, and Polish translations diff --git a/docs/_config.yml b/docs/_config.yml index b89368ed..0d5ac651 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.5rc2 +version: 1.0.5 show_downloads: false encoding: utf-8 theme: jekyll-theme-slate diff --git a/lib/solaar/__init__.py b/lib/solaar/__init__.py index 2e4f25f8..b9be0ff9 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.5rc2' +__version__ = '1.0.5' NAME = 'Solaar' diff --git a/setup.py b/setup.py index 94a47784..f347ac60 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.5rc2' +__version__ = '1.0.5' NAME = 'Solaar'