From 34cc3ccacbb4118ae3bf82a4d790b7ee3b2ac37a Mon Sep 17 00:00:00 2001 From: Ilya Kreymer Date: Thu, 10 Mar 2016 12:51:14 -0800 Subject: [PATCH] versions and readme: update version to 0.30.0, update README with python 2 and 3 support --- README.rst | 6 ++++-- pywb/__init__.py | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/README.rst b/README.rst index fe5975be..d739db39 100644 --- a/README.rst +++ b/README.rst @@ -1,4 +1,4 @@ -PyWb 0.11.2 +PyWb 0.30.0 =========== .. image:: https://travis-ci.org/ikreymer/pywb.svg?branch=master @@ -6,7 +6,7 @@ PyWb 0.11.2 .. image:: https://coveralls.io/repos/ikreymer/pywb/badge.svg?branch=master :target: https://coveralls.io/r/ikreymer/pywb?branch=master -**pywb** is a python implementation of web archival replay tools, sometimes also known as 'Wayback Machine'. +**pywb** is a Python (2 and ) implementation of web archival replay tools, sometimes also known as 'Wayback Machine'. **pywb** allows high-quality replay (browsing) of archived web data stored in standardized `ARC `_ and `WARC `_, and it can also serve as a customizable rewriting proxy to live web content. @@ -20,6 +20,8 @@ The software can run as a traditional web application or an HTTP or HTTPS proxy **pywb** is fully compliant with the `Memento `_ protocol (`RFC-7089 `_). +**pywb** supports Python 2.6+ and Python 3.3+ + Getting Started -- Run your own Web Archive ------------------------------------------- diff --git a/pywb/__init__.py b/pywb/__init__.py index d5993903..74609f6d 100644 --- a/pywb/__init__.py +++ b/pywb/__init__.py @@ -1,4 +1,4 @@ -__version__ = '1.0b' +__version__ = '0.30.0' DEFAULT_CONFIG = 'pywb/default_config.yaml'