Skip to content

Commit dcf4f46

Browse files
author
bendpx
committed
addec changlog file + updated version
1 parent 90be1d3 commit dcf4f46

File tree

3 files changed

+18
-4
lines changed

3 files changed

+18
-4
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](http://keepachangelog.com/)
6+
and this project adheres to [Semantic Versioning](http://semver.org/).
7+
8+
## [1.2.0] - 2017-04-18
9+
### Added
10+
- Added UUID to page requested
11+
- New block/captcha templates
12+
- Delete captcha cookie after evaluation
13+
- Sending original cookie value when decryption fails

perimeterx/middleware.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def __init__(self, app, config=None):
1717
self.config = {
1818
'blocking_score': 60,
1919
'debug_mode': False,
20-
'module_version': 'Python SDK v1.0.3',
20+
'module_version': 'Python SDK v1.2.0',
2121
'module_mode': 'active_monitoring',
2222
'perimeterx_server_host': 'sapi.perimeterx.net',
2323
'captcha_enabled': True,

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,16 @@
22

33
from setuptools import setup
44

5+
version = 'v1.2.0'
56
setup(name='perimeterx-python-wsgi',
6-
version='v1.0.3',
7+
version=version,
78
description='PerimeterX WSGI middleware',
89
author='Ben Diamant',
910
author_email='[email protected]',
1011
url='https://github.com/PerimeterX/perimeterx-python-wsgi',
11-
download_url='https://github.com/PerimeterX/perimeterx-python-wsgi/tarball/v1.0.2',
12+
download_url='https://github.com/PerimeterX/perimeterx-python-wsgi/tarball/' + version,
1213
package_dir={'perimeterx': 'perimeterx'},
1314
install_requires=[
14-
"pystache"
15+
"pystache"
1516
]
1617
)

0 commit comments

Comments
 (0)