Skip to content

Commit

Permalink
1.1.0 - Change version
Browse files Browse the repository at this point in the history
  • Loading branch information
Martlark committed Jul 29, 2020
1 parent fdfdf51 commit aaf9d92
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ Release History
---------------
1.0.13 - Remove reason= which did nothing. Add url to report table. Add more nuisances. Add release history.
1.0.14 - Add more nuisances. Add ability to block regions by using `block_cidr()`. Remove support for obsolete Python releases (2.7,3.4,3.5).
1.1.0 - Add more nuisances. Add ability to block regions by using `block_cidr()`. Remove support for obsolete Python releases (2.7,3.4,3.5).
Licensing
---------
Expand Down
2 changes: 1 addition & 1 deletion flask_ipban/ip_ban.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class IpBan:
"""

VERSION = '1.0.14'
VERSION = '1.1.0'

def __init__(self, app=None, ban_count=20, ban_seconds=3600 * 24, persist=False, record_dir=None, ipc=False,
secret_key=None, ip_header=None, abuse_IPDB_config=None):
Expand Down
4 changes: 2 additions & 2 deletions pypar.commands.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ pip install twine

python setup.py sdist bdist_wheel
#
twine check dist/flask_ipban-1.0.14*
twine check dist/flask_ipban-1.1.0*
# test
# pip install -e .
# twine upload --repository-url https://test.pypi.org/legacy/ dist/* -u martlark
# prod pypi
# add release in git hub to match the version
twine upload dist/flask_ipban-1.0.14* -u martlark
twine upload dist/flask_ipban-1.1.0* -u martlark
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
from codecs import open
from setuptools import setup

VERSION = '1.0.14'
VERSION = '1.1.0'
LONG_DESCRIPTION = open('README.rst', 'r', encoding='utf-8').read()

setup(
Expand Down

0 comments on commit aaf9d92

Please sign in to comment.