diff --git a/ChangeLog b/ChangeLog index c69e8874..78383c07 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,5 @@ -1.1.0rc2: +1.1.0rc3: + * Fix bug when adding receiver to tray menu * Add Catalan translation. * Add toggle command to solaar config to toggle boolean settings * Don't select windows with no PID when looking for focus window diff --git a/docs/_config.yml b/docs/_config.yml index 64b5ad7a..eca2c706 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.1.0rc2 +version: 1.1.0rc3 show_downloads: false encoding: utf-8 theme: jekyll-theme-slate diff --git a/lib/solaar/__init__.py b/lib/solaar/__init__.py index 07e5dcc1..ab7f58b1 100644 --- a/lib/solaar/__init__.py +++ b/lib/solaar/__init__.py @@ -16,5 +16,5 @@ ## with this program; if not, write to the Free Software Foundation, Inc., ## 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. -__version__ = '1.1.0rc2' +__version__ = '1.1.0rc3' NAME = 'Solaar' diff --git a/setup.py b/setup.py index 131f35be..0edab763 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.1.0rc2' +__version__ = '1.1.0rc3' NAME = 'Solaar'