From 9835a0bcbc8d3af8c8ff8c0b6bfc791d8259b3dc Mon Sep 17 00:00:00 2001 From: Volodymyr Yahello Date: Sun, 6 Jun 2021 23:00:08 +0300 Subject: [PATCH] Release 0.1.9 package version --- .travis.yml | 2 +- CHANGELOG.md | 8 ++++++++ plugin/__init__.py | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 5353721..3476bf1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,7 +11,7 @@ addons: apt: update: true env: - - PACKAGE_NAME=pytest-emoji-output PACKAGE_VERSION=0.1.8 + - PACKAGE_NAME=pytest-emoji-output PACKAGE_VERSION=0.1.9 before_install: - sudo add-apt-repository -y ppa:duggan/bats - sudo apt-get -y install bats diff --git a/CHANGELOG.md b/CHANGELOG.md index 2617aed..5d30d66 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,14 @@ Versions ======== + +0.1.9 +======= + +_Release date: 2021-06-06_ + +- Declare used tools + 0.1.8 ======= diff --git a/plugin/__init__.py b/plugin/__init__.py index 351655a..45c7ecf 100644 --- a/plugin/__init__.py +++ b/plugin/__init__.py @@ -1,6 +1,6 @@ """Package provides API for testing output with emoji.""" -__version__: str = "0.1.8" +__version__: str = "0.1.9" __package_name__: str = "pytest-emoji-output" __author__: str = "Volodymyr Yahello" __email__: str = "vyahello@gmail.com"