Version 0.3.1

master
Rob Glew 7 years ago
parent 532513862e
commit c943935bda
  1. 4
      README.md
  2. 2
      install.sh
  3. 1
      pappyproxy/lists/fuzzdb
  4. 2
      pappyproxy/util.py
  5. 2
      setup.py

@ -38,7 +38,7 @@ Pappy supports OS X and Linux, and may or may not work in Cygwin or something on
* python3 * python3
* pip * pip
* virtualenv * virtualenv
* go version 1.3 or higher * go
To install Pappy: To install Pappy:
@ -765,8 +765,6 @@ Changelog
--------- ---------
The boring part of the readme The boring part of the readme
* 0.3.1
* Borked the git push so it's version 0.3.1 now
* 0.3.0 * 0.3.0
* Rewrote large amount of code in Go (see the [puppy repo](https://github.com/roglew/puppy) for all the stuff implemented in Go) * Rewrote large amount of code in Go (see the [puppy repo](https://github.com/roglew/puppy) for all the stuff implemented in Go)
* Rewrote the rest of the python * Rewrote the rest of the python

@ -72,11 +72,13 @@ if ! type "pip" > /dev/null; then
fi fi
fi fi
cd /tmp
if python -c "import pappyproxy" &> /dev/null; then if python -c "import pappyproxy" &> /dev/null; then
echo "An earlier version of pappy appears to be installed. Please remove it and try installation again." echo "An earlier version of pappy appears to be installed. Please remove it and try installation again."
echo "This can likely be done by running \"pip uninstall pappyproxy\"" echo "This can likely be done by running \"pip uninstall pappyproxy\""
exit 1; exit 1;
fi fi
cd "$INSTALLDIR"
# Set up fake gopath # Set up fake gopath
if [ -z "$GOPATH" ]; then if [ -z "$GOPATH" ]; then

@ -1 +0,0 @@
Subproject commit 3a35bfdcf5cbfc3598d5c21f7de78a3277b1b259

@ -198,7 +198,7 @@ def get_req_data_row(request, client=None):
Get the row data for a request to be printed. Get the row data for a request to be printed.
""" """
if client is not None: if client is not None:
rid = client.prefixed_reqid(request) rid = client.get_reqid(request)
else: else:
rid = request.db_id rid = request.db_id
method = request.method method = request.method

@ -4,7 +4,7 @@ import pkgutil
#import pappyproxy #import pappyproxy
from setuptools import setup, find_packages from setuptools import setup, find_packages
VERSION = "0.3.1" VERSION = "0.3.0"
setup(name='pappyproxy', setup(name='pappyproxy',
version=VERSION, version=VERSION,

Loading…
Cancel
Save