release 1.0.0

This commit is contained in:
Benjamin Dauvergne 2021-11-25 12:07:44 +01:00
parent 8e2950e101
commit a8a33fcbc7
2 changed files with 19 additions and 1 deletions

18
.pre-commit-config.yaml Normal file
View File

@ -0,0 +1,18 @@
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
repos:
- repo: https://github.com/psf/black
rev: 20.8b1
hooks:
- id: black
args: ['--target-version', 'py37', '--skip-string-normalization', '--line-length', '110']
- repo: https://github.com/PyCQA/isort
rev: 5.7.0
hooks:
- id: isort
args: ['--profile', 'black', '--line-length', '110']
- repo: https://github.com/asottile/pyupgrade
rev: v2.20.0
hooks:
- id: pyupgrade
args: ['--keep-percent-format', '--py37-plus']

View File

@ -7,7 +7,7 @@ with open('README') as f:
setup(
name='git-redmine',
version='0.9.0',
version='1.0.0',
description='Git porcelain to interface with Redmine',
long_description=readme,
py_modules=['git_redmine'],