From f601417760e05a13ce18947e15ee3935f552980d Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Wed, 30 Jan 2019 00:43:21 +0100 Subject: [PATCH] prepare new minor release --- .drone.yml | 2 ++ CHANGELOG.md | 19 ++++++++----------- ansiblelater/__init__.py | 2 +- 3 files changed, 11 insertions(+), 12 deletions(-) diff --git a/.drone.yml b/.drone.yml index 75af2da..297ff11 100644 --- a/.drone.yml +++ b/.drone.yml @@ -111,6 +111,8 @@ steps: files: - dist/* - sha256sum.txt + title: $${DRONE_TAG} + note: CHANGELOG.md depends_on: - gpgsign when: diff --git a/CHANGELOG.md b/CHANGELOG.md index 5b892b2..af7cb9b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,8 @@ - - -## v0.1.0 (2018-12-19) - -### Drone - -* fix version grep and switch to stretch images for test steps -* add missing build dependencies -* add missing build-base to alpine python images -* prepare pipeline to allow parallel python versions testing - +- BUGFIX + - Error while vault file classification if file is a binary [#6](https://github.com/xoxys/ansible-later/issues/6) + - Wrong line number displayed when using normalized yaml [#3](https://github.com/xoxys/ansible-later/issues/3) +- ENHANCEMENT + - Exclude include_vars from tasks that has to be named [#5](https://github.com/xoxys/ansible-later/issues/5) + - New rule: force `become` is not used without `become_user` [#4](https://github.com/xoxys/ansible-later/issues/4) + - New rule: bool values should be True/False or yes/no formatted [#2](https://github.com/xoxys/ansible-later/issues/2) + - New rule: jinja2 filters should be separated by spaces [#1](https://github.com/xoxys/ansible-later/issues/1) diff --git a/ansiblelater/__init__.py b/ansiblelater/__init__.py index 240125b..7ff2efe 100644 --- a/ansiblelater/__init__.py +++ b/ansiblelater/__init__.py @@ -1,6 +1,6 @@ __author__ = "Robert Kaussow" __project__ = "ansible-later" -__version__ = "0.1.1" +__version__ = "0.1.2" __license__ = "MIT" __maintainer__ = "Robert Kaussow" __email__ = "mail@geeklabor.de"