From: Phillip Berndt Date: Sun, 15 Nov 2020 15:32:28 +0000 (+0100) Subject: Release 1.11 X-Git-Tag: 1.11 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=43af27a051ae67dd921c134ef36df9e9117355e5;hp=46932031657dc5907d3d0628afde3717bedcd37a;p=deb_pkgs%2Fautorandr.git 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. --- 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,