-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump version to v1.0.0 and update readme
- Loading branch information
Showing
4 changed files
with
35 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Changelog | ||
|
||
## v1.0.0 - 2021-04-04 | ||
|
||
* Initial release. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
[tool.poetry] | ||
name = 'flake8-type-checking' | ||
version = '0.1.5' | ||
version = '1.0.0' | ||
description = 'A flake8 plugin for managing type-checking imports & forward references' | ||
homepage = 'https://github.com/snok' | ||
repository = 'https://github.com/sondrelg/flake8-type-checking' | ||
authors = ['Sondre Lillebø Gundersen <[email protected]>'] | ||
license = 'BSD-2-Clause' | ||
license = 'BSD-3-Clause' | ||
readme = 'README.md' | ||
keywords = ['flake8', 'linting', 'type hint', 'typing', 'imports'] | ||
keywords = ['flake8', 'plugin', 'linting', 'type hint', 'typing', 'imports'] | ||
include = ['CHANGELOG.md'] | ||
packages = [{ include = 'flake8_type_checking' }] | ||
classifiers = [ | ||
'Development Status :: 4 - Beta', | ||
'Development Status :: 5 - Production/Stable', | ||
'Intended Audience :: Developers', | ||
'Environment :: Console', | ||
'Operating System :: OS Independent', | ||
|