diff --git a/CHANGES.rst b/CHANGES.rst index 97eb7805..4ad132cc 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,17 +1,22 @@ +pywb 0.9.2 changelist +~~~~~~~~~~~~~~~~~~~~~ + + + pywb 0.9.1 changelist ~~~~~~~~~~~~~~~~~~~~~ * Implement pagination support for zipnum cluster and added to cdx server api: https://github.com/ikreymer/pywb/wiki/CDX-Server-API - + * cdx server query: add support for ``url=*.host`` and ``url=host/*`` as shortcuts for ``matchType=domain`` and ``matchType=prefix`` * zipnum cdx cluster: support loading index shared from prefix path instead of seperate location file. The ``shard_index_loc`` config property may contain match and replace properties. Regex replacement is then used to obtain path prefix from the shard prefix path. - + * wombat: fix `document.write()` rewriting to rewrite each element at a time and use underlying write for better compatibility. diff --git a/README.rst b/README.rst index c9885d11..9985bfa6 100644 --- a/README.rst +++ b/README.rst @@ -1,4 +1,4 @@ -PyWb 0.9.1 +PyWb 0.9.2 ========== .. image:: https://travis-ci.org/ikreymer/pywb.svg?branch=master diff --git a/pywb/__init__.py b/pywb/__init__.py index 07e532a7..9a27fb54 100644 --- a/pywb/__init__.py +++ b/pywb/__init__.py @@ -1,4 +1,4 @@ -__version__ = '0.9.1' +__version__ = '0.9.2' DEFAULT_CONFIG = 'pywb/default_config.yaml'