Skip to content

Commit

Permalink
release: 0.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hakancelikdev committed Feb 3, 2023
1 parent 5fd5e49 commit 06be1aa
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 7 deletions.
4 changes: 1 addition & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,9 @@ repos:
- id: isort

- repo: https://github.com/hakancelikdev/unimport
rev: 0.13.0
rev: 0.14.0
hooks:
- id: unimport
args:
- --config pyproject.toml

- repo: https://github.com/PyCQA/docformatter
rev: v1.6.0.rc1
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ inputs:
runs:
using: "composite"
steps:
- run: pip install --upgrade pip && python -m pip install unimport==0.13.0
- run: pip install --upgrade pip && python -m pip install unimport==0.14.0
shell: bash
- run: unimport --color auto --gitignore --ignore-init ${{ inputs.extra_args }}
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.

## [Unreleased] - YYYY-MM-DD

## [x.y.z] - YYYY-MM-DD
## [0.14.0] - 2023-02-03

### Added

Expand Down
2 changes: 1 addition & 1 deletion docs/tutorial/use-with-github-action.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
- name: Check unused imports
uses: hakancelikdev/unimport@0.13.0
uses: hakancelikdev/unimport@0.14.0
with:
extra_args: --include src/
```
2 changes: 1 addition & 1 deletion src/unimport/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = "0.13.0"
__version__ = "0.14.0"
__description__ = "A linter, formatter for finding and removing unused import statements."

0 comments on commit 06be1aa

Please sign in to comment.