From d4a5d2c3ce5611834818cbd229d7095b248f9f9a Mon Sep 17 00:00:00 2001 From: Alberto Sottile Date: Sun, 7 Mar 2021 16:20:59 +0100 Subject: [PATCH] Bump version to 0.2.0 --- darkdetect/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/darkdetect/__init__.py b/darkdetect/__init__.py index 95fc145..fe3feb1 100644 --- a/darkdetect/__init__.py +++ b/darkdetect/__init__.py @@ -4,7 +4,7 @@ # Distributed under the terms of the 3-clause BSD License. #----------------------------------------------------------------------------- -__version__ = '0.1.1' +__version__ = '0.2.0' import sys import platform @@ -17,7 +17,7 @@ from ._mac_detect import * del V elif sys.platform == "win32" and platform.release() == "10": - # Checks if running Windows 10 version 10.0.14393 (Anniversary Update) or higher. The getwindowsversion method returns a tuple. + # Checks if running Windows 10 version 10.0.14393 (Anniversary Update) or higher. The getwindowsversion method returns a tuple. # The third item is the build number that we can use to check if the user has a new enough version of Windows. winver = int(sys.getwindowsversion()[2]) if winver >= 14393: