Skip to content

Commit

Permalink
v0.8.4
Browse files Browse the repository at this point in the history
  • Loading branch information
hakancelikdev committed Jun 26, 2021
1 parent 6f3b9b8 commit 838839f
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 9 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/build-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,6 @@ jobs:
python -m pip install -e .[docs]
- name: Build Docs
run: mkdocs gh-deploy --force
run: |
git fetch --all
mkdocs gh-deploy -m "Update Docs" --remote-branch gh-pages
5 changes: 0 additions & 5 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,6 @@ jobs:
python-version: "3.8"
architecture: "x64"

- name: Install Dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -e .[dev]
- name: Build Unimport
run: python setup.py sdist

Expand Down
Empty file added docs/.nojekyll
Empty file.
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 - ././
## 0.8.4 - 06/26/2021

- [Fix emoji issues by @hakancelik96](https://github.com/hakancelik96/unimport/pull/185)

Expand Down
5 changes: 5 additions & 0 deletions docs/overrides/main.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{% extends "base.html" %} {% block outdated %} You're not viewing the latest version.
<a href="{{ '../' ~ base_url }}">
<strong>Click here to go to latest.</strong>
</a>
{% endblock %}
5 changes: 5 additions & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,10 @@ plugins:
minify_html: true

extra:
version:
provider: mike
default: stable

social:
- icon: fontawesome/brands/telegram
link: https://t.me/unimport
Expand All @@ -80,6 +84,7 @@ extra:

theme:
name: material
custom_dir: docs/overrides
language: en
features:
- navigation.instant
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def get_long_description():
DESCRIPTION = (
"A linter, formatter for finding and removing unused import statements."
)
VERSION = "0.8.3"
VERSION = "0.8.4"


setup(
Expand Down
2 changes: 1 addition & 1 deletion unimport/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
DESCRIPTION = (
"A linter, formatter for finding and removing unused import statements."
)
VERSION = "0.8.3"
VERSION = "0.8.4"

__all__ = [
"ASTFunctionT",
Expand Down

0 comments on commit 838839f

Please sign in to comment.