Skip to content

Commit

Permalink
addec changlog file + updated version
Browse files Browse the repository at this point in the history
  • Loading branch information
bendpx committed Apr 18, 2017
1 parent 90be1d3 commit dcf4f46
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 4 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Change Log

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [1.2.0] - 2017-04-18
### Added
- Added UUID to page requested
- New block/captcha templates
- Delete captcha cookie after evaluation
- Sending original cookie value when decryption fails
2 changes: 1 addition & 1 deletion perimeterx/middleware.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def __init__(self, app, config=None):
self.config = {
'blocking_score': 60,
'debug_mode': False,
'module_version': 'Python SDK v1.0.3',
'module_version': 'Python SDK v1.2.0',
'module_mode': 'active_monitoring',
'perimeterx_server_host': 'sapi.perimeterx.net',
'captcha_enabled': True,
Expand Down
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,16 @@

from setuptools import setup

version = 'v1.2.0'
setup(name='perimeterx-python-wsgi',
version='v1.0.3',
version=version,
description='PerimeterX WSGI middleware',
author='Ben Diamant',
author_email='[email protected]',
url='https://github.com/PerimeterX/perimeterx-python-wsgi',
download_url='https://github.com/PerimeterX/perimeterx-python-wsgi/tarball/v1.0.2',
download_url='https://github.com/PerimeterX/perimeterx-python-wsgi/tarball/' + version,
package_dir={'perimeterx': 'perimeterx'},
install_requires=[
"pystache"
"pystache"
]
)

0 comments on commit dcf4f46

Please sign in to comment.