diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 85c9a19..bd57e47 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,7 +2,7 @@ name: Continuous Integration 🐍 on: [push] env: PACKAGE_NAME: pytest-emoji-output - PACKAGE_VERSION: 0.1.10 + PACKAGE_VERSION: 0.2.0 jobs: build_and_verify: runs-on: ubuntu-latest diff --git a/.travis.yml b/.travis.yml index b0ebaf6..5baa667 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,7 +12,7 @@ addons: apt: update: true env: - - PACKAGE_NAME=pytest-emoji-output PACKAGE_VERSION=0.1.10 + - PACKAGE_NAME=pytest-emoji-output PACKAGE_VERSION=0.2.0 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 aba1a37..cd7b2ce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,15 @@ Versions ======== +0.2.0 +======= + +_Release date: 2022-04-12_ + +- Support python3.10 +- Update pytest dependency versions +- Cover testing section + 0.1.10 ======= diff --git a/plugin/__init__.py b/plugin/__init__.py index 4b6e3cd..882b020 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.10" +__version__: str = "0.2.0" __package_name__: str = "pytest-emoji-output" __author__: str = "Volodymyr Yahello" __email__: str = "vyahello@gmail.com"