From a5e65d95890383ef97e09607cd045614add53d91 Mon Sep 17 00:00:00 2001 From: Leonid Shalupov Date: Sun, 10 Mar 2019 16:25:13 +0300 Subject: [PATCH] 1.22 --- CHANGELOG.txt | 13 +++++++++++++ teamcity/__init__.py | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index d34b770..3043d4c 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,6 +1,19 @@ Change Log ---------- +Version 1.22 Sun Mar 10 2019 + + - python: dropped Python 2.4, 2.5, 3.2, 3.3 support. Latest version to support them is 1.21 + - python: supported Python 3.6, 3.7 + - behave: initial support + - unittest: subtests support + - various unicode fixes + - nose, unittest: correctly capture stdout to provide better test output + - twisted: format twisted Failure objects by @jackrobison + - various test infrastructure fixes by @sambrightman + - flake8: correctly initialize options by @sambrightman + - various fixes to use teamcity-messages code in JetBrains PyCharm IDE + Version 1.21 Mon Jan 2 2017 - pytest: internal Error during test collection with pytest and teamcity-messages plugin #112 diff --git a/teamcity/__init__.py b/teamcity/__init__.py index 27c2b5b..70992d5 100644 --- a/teamcity/__init__.py +++ b/teamcity/__init__.py @@ -3,7 +3,7 @@ __all__ = ['is_running_under_teamcity'] -__version__ = "1.21" +__version__ = "1.22" teamcity_presence_env_var = "TEAMCITY_VERSION"