From 5170828696918523afdb4b97b25b5b6e6167423c Mon Sep 17 00:00:00 2001 From: dalthviz Date: Mon, 29 Nov 2021 10:28:04 -0500 Subject: [PATCH] Release 1.1.1 --- CHANGELOG.md | 21 +++++++++++++++++++++ qtawesome/_version.py | 2 +- 2 files changed, 22 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b475c013..c35b0463 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,26 @@ # History of changes +## Version 1.1.1 (2021-11-29) + +### Issues Closed + +* [Issue 178](https://github.com/spyder-ide/qtawesome/issues/178) - Add deprecation warning for Font Awesome 4.x - 4.7 ([PR 185](https://github.com/spyder-ide/qtawesome/pull/185) by [@dalthviz](https://github.com/dalthviz)) + +In this release 1 issue was closed. + +### Pull Requests Merged + +* [PR 186](https://github.com/spyder-ide/qtawesome/pull/186) - PR: Try calling newer Qt methods first before falling back to deprecated/removed ones, by [@kumattau](https://github.com/kumattau) +* [PR 185](https://github.com/spyder-ide/qtawesome/pull/185) - PR: Add DeprecationWarning for FontAwesome 4.7 icon set, by [@dalthviz](https://github.com/dalthviz) ([178](https://github.com/spyder-ide/qtawesome/issues/178)) +* [PR 184](https://github.com/spyder-ide/qtawesome/pull/184) - PR: Update README docs badge, Copyright year and sponsors logo, by [@dalthviz](https://github.com/dalthviz) +* [PR 183](https://github.com/spyder-ide/qtawesome/pull/183) - PR: Change to "Ctrl+F" because PyQt6 doesn't support Modifier + Key, by [@kumattau](https://github.com/kumattau) + +In this release 4 pull requests were closed. + + +---- + + ## Version 1.1.0 (2021-11-02) ### New features diff --git a/qtawesome/_version.py b/qtawesome/_version.py index a89112b0..68e807a5 100644 --- a/qtawesome/_version.py +++ b/qtawesome/_version.py @@ -1,2 +1,2 @@ -version_info = (1, 2, 0, 'dev0') +version_info = (1, 1, 1) __version__ = '.'.join(map(str, version_info))