PyJSONProxy

simple proxy and scraper
git clone https://git.ce9e.org/PyJSONProxy.git

commit
410a59b0e615757f8128928591cabd048be89493
parent
e3131e9760bdd74b8d038a096c3b65bccd8412d5
Author
Tobias Bengfort <tobias.bengfort@gmx.net>
Date
2015-12-06 22:34
bump version to 1.0.0

Diffstat

M CHANGES.rst 10 +++++++++-
M setup.py 2 +-

2 files changed, 10 insertions, 2 deletions


diff --git a/CHANGES.rst b/CHANGES.rst

@@ -1,7 +1,15 @@
    1     1 Changes
    2     2 =======
    3     3 
    4    -1 0.1.0 (2015-04-12)
   -1     4 1.0.0 (2015-12-06)
   -1     5 ------------------
   -1     6 
   -1     7 Large parts have been reimplemented with asyncio.  This results in much
   -1     8 improved performance, but support for python2 has been dropped.  This release
   -1     9 should be compatible with the last one.
   -1    10 
   -1    11 
   -1    12 0.1.0 (2015-12-04)
    5    13 ------------------
    6    14 
    7    15 - breaking change: more flexible scrape configuration

diff --git a/setup.py b/setup.py

@@ -5,7 +5,7 @@ from setuptools import setup
    5     5 
    6     6 setup(
    7     7     name='jsonproxy',
    8    -1     version='0.1.0',
   -1     8     version='1.0.0',
    9     9     description='Generic proxy to allow access to non-jsonp APIs',
   10    10     long_description=open('README.rst').read(),
   11    11     url='https://github.com/xi/PyJSONProxy',