From 43af27a051ae67dd921c134ef36df9e9117355e5 Mon Sep 17 00:00:00 2001 From: Phillip Berndt Date: Sun, 15 Nov 2020 16:32:28 +0100 Subject: [PATCH] Release 1.11 This updates the readme with changes since 1.10.1 and releases 1.11. This version primarily brings small bugfixes, only change warranting minor version bump is that batch mode now assigns user groups. Fixes #227. --- README.md | 5 +++++ autorandr.py | 2 +- setup.py | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7708aa4..65603c2 100644 --- a/README.md +++ b/README.md @@ -224,6 +224,11 @@ options nvidia_drm modeset=1 ## Changelog +**autorandr 1.11** +* *2020-05-23* Handle empty sys.executable +* *2020-06-08* Fix Python 2 compatibility +* *2020-10-06* Set group membership of users in batch mode + **autorandr 1.10.1** * *2020-05-04* Revert making the launcher the default (fixes #195) diff --git a/autorandr.py b/autorandr.py index c517c48..25b0f53 100755 --- a/autorandr.py +++ b/autorandr.py @@ -48,7 +48,7 @@ if sys.version_info.major == 2: else: import configparser -__version__ = "1.10.1" +__version__ = "1.11" try: input = raw_input diff --git a/setup.py b/setup.py index a98a689..dff8ac9 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ except: setup( name='autorandr', - version='1.10.1.post1', + version='1.11.post1', description='Automatically select a display configuration based on connected devices', long_description=long_description, -- 2.39.2