-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
addec changlog file + updated version
- Loading branch information
bendpx
committed
Apr 18, 2017
1 parent
90be1d3
commit dcf4f46
Showing
3 changed files
with
18 additions
and
4 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,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 |
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
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 |
---|---|---|
|
@@ -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" | ||
] | ||
) |