From 8639b16a951b08dae8735b341f80277785ca00ba Mon Sep 17 00:00:00 2001 From: Nick Williams Date: Tue, 25 Feb 2020 15:38:34 -0600 Subject: [PATCH] Released PySOA version 1.1.3 Changelog Details: - [PATCH] Try to make Travis builds faster - [PATCH] Update documentation - [PATCH] Fix two bugs regarding client expansions --- CHANGELOG.rst | 6 ++++++ pysoa/version.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index efd3418a..ca949ccd 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,12 @@ Changelog ========= +1.1.3 (2020-02-25) +------------------ +- [PATCH] Try to make Travis builds faster +- [PATCH] Update documentation +- [PATCH] Fix two bugs regarding client expansions + 1.0.4 (2020-02-25) ------------------ - [PATCH] Fix two bugs regarding client expansions diff --git a/pysoa/version.py b/pysoa/version.py index 4d534da2..cb1b1a9f 100644 --- a/pysoa/version.py +++ b/pysoa/version.py @@ -4,5 +4,5 @@ ) -__version_info__ = (1, 1, 2) +__version_info__ = (1, 1, 3) __version__ = '-'.join(filter(None, ['.'.join(map(str, __version_info__[:3])), (__version_info__[3:] or [None])[0]]))