Skip to content

Commit

Permalink
Release v0.0.1-alpha.2
Browse files Browse the repository at this point in the history
  • Loading branch information
hadialqattan committed Oct 2, 2020
1 parent ca7ef69 commit b8795da
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 3 deletions.
6 changes: 6 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
repos:
- repo: https://github.com/hadialqattan/pycln
rev: stable # To specify a release: https://github.com/hadialqattan/pycln/tags
hooks:
- id: pycln
args: [--config=pyproject.toml]

- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v3.2.0
hooks:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<img src="https://raw.githubusercontent.com/hadialqattan/pycln/master/docs/_media/logo-background.png" width="100%" alt="Logo">

<p align="center">
<quote>A formatter for finding and removing unused import statements.</quote>
A formatter for finding and removing unused import statements.
</p>

<p align="center">
Expand Down
10 changes: 10 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,16 @@ this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm

## [Unreleased]

## [0.0.1-alpha.2] - 2020-10-03

### Added

- [Add Pycln hook to `pre-commit-config.yaml` by @hadialqattan](https://github.com/hadialqattan/pycln/pull/13)

### Removed

- [Remove <quote> tags on PyPI/README.md (can't be rendered) by @hadialqattan](https://github.com/hadialqattan/pycln/pull/13)

## [0.0.1-alpha.1] - 2020-10-02

### Changed
Expand Down
2 changes: 1 addition & 1 deletion docs/_coverpage.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<!-- Title & body -->

# Pycln <small>0.0.1-alpha.1</small>
# Pycln <small>0.0.1-alpha.2</small>

> A formatter for finding and removing unused import statements.
Expand Down
5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pycln"
version = "0.0.1-alpha.1"
version = "0.0.1-alpha.2"
description = "A formatter for finding and removing unused import statements."
authors = ["Hadi Alqattan <[email protected]>"]
repository = "https://github.com/hadialqattan/pycln"
Expand Down Expand Up @@ -40,6 +40,9 @@ pytest-randomly = "^3.4.1"
oschmod = "^0.3.9"

# Pre-commit hooks related config.
[tool.pycln]
all = true

[tool.isort]
line_length = 88
multi_line_output = 3
Expand Down

0 comments on commit b8795da

Please sign in to comment.