From 77d5ab3a0164651b29cec6934ea4b0dead359655 Mon Sep 17 00:00:00 2001 From: Hakan Celik Date: Tue, 4 Apr 2023 01:41:28 +0300 Subject: [PATCH] 0.16.0 version has been released --- .pre-commit-config.yaml | 2 +- action.yml | 2 +- docs/CHANGELOG.md | 2 ++ docs/tutorial/use-with-github-action.md | 2 +- src/unimport/__init__.py | 2 +- 5 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index ffcdf175..13b8422c 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -12,7 +12,7 @@ repos: - id: isort - repo: https://github.com/hakancelikdev/unimport - rev: 0.15.0 + rev: 0.16.0 hooks: - id: unimport diff --git a/action.yml b/action.yml index c5f0e26e..aee29e77 100644 --- a/action.yml +++ b/action.yml @@ -10,7 +10,7 @@ inputs: runs: using: "composite" steps: - - run: pip install --upgrade pip && python -m pip install unimport==0.15.0 + - run: pip install --upgrade pip && python -m pip install unimport==0.16.0 shell: bash - run: unimport --color auto --gitignore --ignore-init ${{ inputs.extra_args }} shell: bash diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index d1a44979..da9beb7c 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file. ## [Unreleased] - YYYY-MM-DD +## [0.16.0] - 2023-04-04 + ### Added - Add support like command line commands in configuration files. #287 diff --git a/docs/tutorial/use-with-github-action.md b/docs/tutorial/use-with-github-action.md index 38f3af35..2021ec0b 100644 --- a/docs/tutorial/use-with-github-action.md +++ b/docs/tutorial/use-with-github-action.md @@ -27,7 +27,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-python@v3 - name: Check unused imports - uses: hakancelikdev/unimport@0.15.0 + uses: hakancelikdev/unimport@0.16.0 with: extra_args: --include src/ ``` diff --git a/src/unimport/__init__.py b/src/unimport/__init__.py index 8b616942..a6812378 100644 --- a/src/unimport/__init__.py +++ b/src/unimport/__init__.py @@ -1,2 +1,2 @@ -__version__ = "0.15.0" +__version__ = "0.16.0" __description__ = "A linter, formatter for finding and removing unused import statements."