From d6c05042c98e6fbe1a55e7ee77a3ff6838df6b2c Mon Sep 17 00:00:00 2001 From: Ilya Kreymer Date: Sat, 27 Dec 2014 03:11:48 -0800 Subject: [PATCH] build: fix incorrectly built 0.7.0, update to 0.7.1 --- CHANGES.rst | 8 +++++--- README.rst | 8 ++++---- setup.py | 4 ++-- 3 files changed, 11 insertions(+), 9 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index d7ab747a..3fabed52 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,10 +1,12 @@ -pywb 0.7.0 changelist +pywb 0.7.1 changelist ~~~~~~~~~~~~~~~~~~~~~ +* (0.7.1 fixes some missing static files from 0.7.0 release) + * Video/Audio Replay, Live Proxy and Recording Support (with pywb-webrecorder)! See: `Video Replay and Recording `_ for more detailed info. - + * Support for replaying HTTP/1.1 range requests for any archived resorce (optional range cache be disabled via `enable_ranges: false`) * Support for on-the-fly video replacement of Flash with HTML5 using new video rewrite system ``vidrw.js``. @@ -18,7 +20,7 @@ pywb 0.7.0 changelist - Date override sets date to replay timestamp - Image() object override - ability to disable dynamic attribute rewriting by setting `_no_rewrite` on an element. - + * Type detection: resolve conflict between text/html that is served under js_ mod, resolve if html or js. diff --git a/README.rst b/README.rst index 3b97c1fa..3697f23b 100644 --- a/README.rst +++ b/README.rst @@ -1,10 +1,10 @@ -PyWb 0.7.0 +PyWb 0.7.1 ========== -.. image:: https://travis-ci.org/ikreymer/pywb.png?branch=develop +.. image:: https://travis-ci.org/ikreymer/pywb.png?branch=master :target: https://travis-ci.org/ikreymer/pywb -.. image:: https://coveralls.io/repos/ikreymer/pywb/badge.png?branch=develop - :target: https://coveralls.io/r/ikreymer/pywb?branch=develop +.. image:: https://coveralls.io/repos/ikreymer/pywb/badge.png?branch=master + :target: https://coveralls.io/r/ikreymer/pywb?branch=master .. image:: https://img.shields.io/gratipay/ikreymer.svg :target: https://www.gratipay.com/ikreymer/ diff --git a/setup.py b/setup.py index 0aae5636..8532f8b7 100755 --- a/setup.py +++ b/setup.py @@ -34,7 +34,7 @@ class PyTest(TestCommand): setup( name='pywb', - version='0.7.0', + version='0.7.1', url='https://github.com/ikreymer/pywb', author='Ilya Kreymer', author_email='ikreymer@gmail.com', @@ -42,7 +42,7 @@ setup( long_description=long_description, license='GPL', packages=find_packages(), - include_package_data=True, + #include_package_data=True, provides=[ 'pywb', 'pywb.utils',