From 0756a440faf8da9b0af1353bc5119b8a42bf8039 Mon Sep 17 00:00:00 2001 From: Daigo Tanaka Date: Wed, 7 Apr 2021 06:07:02 +0000 Subject: [PATCH] bump version to 0.3.4 --- HISTORY.md | 8 ++++++++ handoff/config.py | 2 +- setup.py | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/HISTORY.md b/HISTORY.md index 2b03800..3c8cb49 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,5 +1,13 @@ ## History +### 0.3.4 (2021-04-06) + +- feature: log pattern filter and json output +- feature: Include STOPPED task in the status list. Full description of schedule (#80) +- fix: travis script +- fix: update get-pip.py URL (#83) +- fix: Switch tap-exchangeratesapi to tap-exchangeratehost in 04_install test project + ### 0.3.3 (2021-01-09) - fix: safe char should include period(.) define _line_safe var in foreach (#79) diff --git a/handoff/config.py b/handoff/config.py index efc95ef..c4e3684 100644 --- a/handoff/config.py +++ b/handoff/config.py @@ -1,4 +1,4 @@ -VERSION = "0.3.3" +VERSION = "0.3.4" VERSION_MINOR = ".".join(VERSION.split(".")[0:2]) import os, re diff --git a/setup.py b/setup.py index a779658..72fe8df 100755 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ #!/usr/bin/env python from setuptools import setup -VERSION = "0.3.3" +VERSION = "0.3.4" with open("README.md", "r") as fh: long_description = fh.read()