From 00bc7f089cfae3b89f541d3e6315cbdd89a371cf Mon Sep 17 00:00:00 2001 From: Michael Sanders Date: Wed, 26 Feb 2020 11:52:47 -0800 Subject: [PATCH] 4.0.0 --- CHANGELOG.md | 6 ++++++ autopy/__init__.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 31618c6..adabb95 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## 4.0.0 - 2020-02-26 + +### Changed + +- Updated bitmap color functions to accept hex value rather than tuple. + ## 3.1.0 - 2020-01-17 ### Added diff --git a/autopy/__init__.py b/autopy/__init__.py index 5130f49..af0b2f3 100644 --- a/autopy/__init__.py +++ b/autopy/__init__.py @@ -6,5 +6,5 @@ from . import alert, bitmap, color, key, mouse, screen __author__ = "Michael Sanders" -__version__ = "3.1.0" +__version__ = "4.0.0" __all__ = ["alert", "bitmap", "color", "key", "mouse", "screen"]