Skip to content

Commit

Permalink
0.16.0 version has been released
Browse files Browse the repository at this point in the history
  • Loading branch information
hakancelikdev committed Apr 3, 2023
1 parent 563c9a1 commit 77d5ab3
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ repos:
- id: isort

- repo: https://github.com/hakancelikdev/unimport
rev: 0.15.0
rev: 0.16.0
hooks:
- id: unimport

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.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
Expand Down
2 changes: 2 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
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.15.0
uses: hakancelikdev/unimport@0.16.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.15.0"
__version__ = "0.16.0"
__description__ = "A linter, formatter for finding and removing unused import statements."

0 comments on commit 77d5ab3

Please sign in to comment.