1
0
mirror of https://github.com/webrecorder/pywb.git synced 2025-03-15 00:03:28 +01:00

bump version to 0.7.5

update CHANGES
fix .gitattributes to use standard flags
This commit is contained in:
Ilya Kreymer 2015-01-12 00:09:02 -08:00
parent ac525b0937
commit 7ece05d022
4 changed files with 15 additions and 8 deletions

8
.gitattributes vendored
View File

@ -1,4 +1,4 @@
*.arc binary
*.warc binary
*.cdx binary
*.gz binary
*.arc -text
*.warc -text
*.cdx -text
*.gz -text

View File

@ -1,6 +1,13 @@
pywb 0.7.3 changelist
pywb 0.7.5 changelist
~~~~~~~~~~~~~~~~~~~~~
* Cross platform fixes to support Windows -- all tests pass on Linux, OS X and Windows now. Improved cross-platform support includes:
- read all files as binary to avoid line ending issues
- properly convert url <-> file
- avoid platform dependent apis
* Change any unhandled exceptions to result in a 500 error, instead of 400.
* More compresensive client side ``src`` attribute rewriting (via wombat.js), additional server-side HTML tag rewriting.

View File

@ -1,4 +1,4 @@
PyWb 0.7.3
PyWb 0.7.5
==========
.. image:: https://travis-ci.org/ikreymer/pywb.png?branch=develop
@ -13,7 +13,7 @@ pywb is a python implementation of web archival replay tools, sometimes also kno
pywb allows high-quality replay (browsing) of archived web data stored in standardized `ARC <http://en.wikipedia.org/wiki/ARC_(file_format)>`_ and `WARC <http://en.wikipedia.org/wiki/Web_ARChive>`_.
The replay system is designed to accurately replay complex dynamic sites, including video and audio content.
pywb can be used as a traditional web application or an HTTP or HTTPS proxy server.
pywb can be used as a traditional web application or an HTTP or HTTPS proxy server, and has been tested on Linux, OS X and Windows platforms.
pywb is also fully compliant with the `Memento <http://mementoweb.org/>`_ protocol (`RFC-7089 <http://tools.ietf.org/html/rfc7089>`_).

View File

@ -34,7 +34,7 @@ class PyTest(TestCommand):
setup(
name='pywb',
version='0.7.3',
version='0.7.5',
url='https://github.com/ikreymer/pywb',
author='Ilya Kreymer',
author_email='ikreymer@gmail.com',