From 92c31e23756aa7acd01d2acd307b1dd66b9e6955 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edgar=20Andr=C3=A9s=20Margffoy=20Tuay?= Date: Tue, 26 Nov 2019 18:53:05 -0500 Subject: [PATCH] Set release version to v0.5.6 --- CHANGELOG.md | 16 ++++++++++++++++ winpty/__init__.py | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f5262926..b93bef72 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,19 @@ +## Version 0.5.6 (2019/11/26) + +### Issues Closed + +* [Issue 126](https://github.com/spyder-ide/pywinpty/issues/126) - Release v0.5.6 +* [Issue 123](https://github.com/spyder-ide/pywinpty/issues/123) - pip install fails on Python 3.8/Windoes ([PR 125](https://github.com/spyder-ide/pywinpty/pull/125)) + +In this release 2 issues were closed. + +### Pull Requests Merged + +* [PR 125](https://github.com/spyder-ide/pywinpty/pull/125) - PR: Add support for Python 3.8 ([123](https://github.com/spyder-ide/pywinpty/issues/123)) + +In this release 1 pull request was closed. + + ## Version 0.5.5 (2018/12/09) ### Issues Closed diff --git a/winpty/__init__.py b/winpty/__init__.py index 3e152f3d..f45c1f0e 100644 --- a/winpty/__init__.py +++ b/winpty/__init__.py @@ -14,5 +14,5 @@ PTY PtyProcess -VERSION_INFO = (0, 6, 0, 'dev0') +VERSION_INFO = (0, 5, 6) __version__ = '.'.join(map(str, VERSION_INFO))