diff --git a/README.md b/README.md index 531bdc2..8dd955c 100644 --- a/README.md +++ b/README.md @@ -257,7 +257,10 @@ options nvidia_drm modeset=1 ## Changelog -**autorandr 1.13 (dev)** +**autorandr 1.13** +* *2023-01-15* Add reversed horizontal/vertical profiles +* *2023-01-15* Fix distutils deprecation warning +* *2023-01-15* Print error when user script fails * *2022-12-01* Support `--skip-options set` to skip setting properties **autorandr 1.12.1** diff --git a/autorandr.py b/autorandr.py index 57056aa..56db59a 100755 --- a/autorandr.py +++ b/autorandr.py @@ -50,7 +50,7 @@ else: import configparser -__version__ = "1.12.1" +__version__ = "1.13" try: input = raw_input diff --git a/setup.py b/setup.py index ed729ba..5e5328e 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ setup( name='autorandr', - version='1.12.1.post1', + version='1.13.post1', description='Automatically select a display configuration based on connected devices', long_description=long_description,