Skip to content

Commit

Permalink
v0.6.6
Browse files Browse the repository at this point in the history
  • Loading branch information
hakancelikdev committed Oct 24, 2020
1 parent e3c6c93 commit 1ba940f
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 10 deletions.
2 changes: 2 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<!--
## Review the Contributing Guidelines
Before submitting a pull request, verify it meets all requirements in the
[Contributing Guidelines](https://github.com/hakancelik96/unimport/blob/master/docs/CONTRIBUTING.md).
-->
2 changes: 1 addition & 1 deletion .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.3.3
- uses: actions/setup-python@v2.1.2
- uses: actions/setup-python@v2.1.4
- uses: pre-commit/action@v2.0.0
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.3.3
- uses: actions/setup-python@v2.1.2
- uses: actions/setup-python@v2.1.4
with:
python-version: "3.8"
architecture: "x64"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- uses: actions/checkout@v2.3.3

- name: Set up Python${{ matrix.python-version }}
uses: actions/setup-python@v2.1.2
uses: actions/setup-python@v2.1.4
with:
python-version: ${{ matrix.python-version }}
architecture: x64
Expand All @@ -20,7 +20,7 @@ jobs:
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements-dev.txt
python -m pip install pytest==6.1.0 pytest-cov==2.10.1
python -m pip install pytest==6.1.1 pytest-cov==2.10.1
- name: Test with pytest
run: |
Expand All @@ -30,6 +30,6 @@ jobs:
run: |
pytest --cov=./ --cov-report=xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1.0.13
uses: codecov/codecov-action@v1.0.14
with:
token: ${{secrets.CODECOV_TOKEN }}
2 changes: 1 addition & 1 deletion docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

All notable changes to this project will be documented in this file.

## [Unreleased] - ././2020
## [0.6.6] - 24/October/2020

- [🐞 Fix: call attribute scanner by @hakancelik96](https://github.com/hakancelik96/unimport/pull/145)
- [🐞 Fix: requirements feature & star import suggestion by @hakancelik96](https://github.com/hakancelik96/unimport/pull/142)
Expand Down
2 changes: 1 addition & 1 deletion docs/_coverpage.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

![logo](_media/icon.png ":size=50%")

# UNIMPORT <small>0.3.0</small>
# UNIMPORT <small>0.6.6</small>

> A linter & formatter for finding & removing unused import statements.
Expand Down
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
importlib_metadata==2.0.0
libcst==0.3.10
libcst==0.3.13
pathspec==0.8.0
semantic-version==2.8.5
toml==0.10.1
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def get_long_description():
python_requires=">=3.6.0",
packages=["unimport"],
install_requires=[
"libcst==0.3.10",
"libcst==0.3.13",
"pathspec==0.8.0",
"toml==0.10.1",
"importlib_metadata==2.0.0",
Expand Down
2 changes: 1 addition & 1 deletion unimport/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
DESCRIPTION = (
"A linter, formatter for finding and removing unused import statements."
)
VERSION = "0.3.0"
VERSION = "0.6.6"

PY38_PLUS = sys.version_info >= (3, 8)

Expand Down

0 comments on commit 1ba940f

Please sign in to comment.