diff --git a/README.md b/README.md index 60ae00b..acef7bb 100644 --- a/README.md +++ b/README.md @@ -271,6 +271,12 @@ WAYLAND_DISPLAY= autorandr ## Changelog +**autorandr 1.15** +* *2023-11-27* Several regex literal bug fixes +* *2023-12-27* Fix #375: Listen to correct events in launcher +* *2024-03-03* Fix #367: Skip profiles without outputs + + **autorandr 1.14** * *2023-06-22* Direct --match-edid renaming of output messages to stderr * *2023-06-22* Add Wayland awareness diff --git a/autorandr.py b/autorandr.py index 88ed30f..11297a5 100755 --- a/autorandr.py +++ b/autorandr.py @@ -50,7 +50,7 @@ if sys.version_info.major == 2: else: import configparser -__version__ = "1.14" +__version__ = "1.15" try: input = raw_input diff --git a/setup.py b/setup.py index b645bfa..c55fe7d 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ except: setup( name='autorandr', - version='1.14.post1', + version='1.15.post1', description='Automatically select a display configuration based on connected devices', long_description=long_description,