From: Phillip Berndt <phillip.berndt@googlemail.com>
Date: Sat, 25 Apr 2020 07:49:51 +0000 (+0200)
Subject: Bump version to 1.10
X-Git-Tag: 1.10
X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=d21d23f81a77bbb9c29a238c30316611340ec0e6;p=deb_pkgs%2Fautorandr.git

Bump version to 1.10

Changes since 1.9:

* *2020-04-23* Fix hook script execution order to match description from readme
* *2020-04-11* Handle negative gamma values (fixes #188)
* *2020-04-11* Sort approximate matches in detected profiles by quality of match
* *2020-01-31* Handle non-ASCII environment variables (fixes #180)
* *2019-12-31* Fix output positioning if the top-left output is not the first
* *2019-12-31* Accept negative gamma values (and interpret them as 0)
* *2019-12-31* Prefer the X11 launcher over systemd/udev configuration

Fixes #191
---

diff --git a/README.md b/README.md
index 1fa3669..0f2012e 100644
--- a/README.md
+++ b/README.md
@@ -214,7 +214,7 @@ profiles matching multiple (or any) monitors.
 
 ## Changelog
 
-**autorandr 1.10 (dev)**
+**autorandr 1.10**
 * *2020-04-23* Fix hook script execution order to match description from readme
 * *2020-04-11* Handle negative gamma values (fixes #188)
 * *2020-04-11* Sort approximate matches in detected profiles by quality of match
diff --git a/autorandr.py b/autorandr.py
index d2b9b08..f7356a0 100755
--- a/autorandr.py
+++ b/autorandr.py
@@ -48,7 +48,7 @@ if sys.version_info.major == 2:
 else:
     import configparser
 
-__version__ = "1.9"
+__version__ = "1.10"
 
 try:
     input = raw_input
diff --git a/setup.py b/setup.py
index 55b3541..75713a8 100644
--- a/setup.py
+++ b/setup.py
@@ -9,7 +9,7 @@ except:
 setup(
     name='autorandr',
 
-    version='1.9.post1',
+    version='1.10.post1',
 
     description='Automatically select a display configuration based on connected devices',
     long_description=long_description,