From d52dd414a67d225f39cd3ef510706c5bfe3b33dd Mon Sep 17 00:00:00 2001 From: dalthviz Date: Tue, 22 Jun 2021 19:35:24 +0200 Subject: [PATCH] Release 1.0.3 --- CHANGELOG.md | 19 +++++++++++++++++++ qtawesome/_version.py | 2 +- 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c034e4be..16239d96 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,24 @@ # History of changes +## Version 1.0.3 (2021-06-22) + +### Issues Closed + +* [Issue 162](https://github.com/spyder-ide/qtawesome/issues/162) - Implicit integer conversion is deprecated + +In this release 1 issue was closed. + +### Pull Requests Merged + +* [PR 163](https://github.com/spyder-ide/qtawesome/pull/163) - PR: Cast tileWidth to an integer (closes #162), by [@juliangilbey](https://github.com/juliangilbey) +* [PR 146](https://github.com/spyder-ide/qtawesome/pull/146) - PR: Timer should belong to parent widget, by [@listyque](https://github.com/listyque) + +In this release 2 pull requests were closed. + + +---- + + ## Version 1.0.2 (2020-12-08) ### Issues Closed diff --git a/qtawesome/_version.py b/qtawesome/_version.py index 4b59efda..7e897cda 100644 --- a/qtawesome/_version.py +++ b/qtawesome/_version.py @@ -1,2 +1,2 @@ -version_info = (1, 1, 0, 'dev0') +version_info = (1, 0, 3) __version__ = '.'.join(map(str, version_info))