diff --git a/CHANGES.rst b/CHANGES.rst index 89fdd2e5..3e20783e 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,13 @@ +pywb 2.6.0 changelist +~~~~~~~~~~~~~~~~~~~~~ + +* Improvements for eval() rewriting + extra unnamed scope to avoid variable collision `#668 `_ + +* fix for documentation links `#666 `_ + +* Update to latest wombat.js (3.3.0) + + pywb 2.6.0b4 changelist ~~~~~~~~~~~~~~~~~~~~~~~ @@ -11,6 +21,7 @@ pywb 2.6.0b4 changelist * Update to latest wombat.js (3.2.2) + pywb 2.6.0b3 changelist ~~~~~~~~~~~~~~~~~~~~~~~ diff --git a/README.rst b/README.rst index 47eff5ca..7e813b0d 100644 --- a/README.rst +++ b/README.rst @@ -1,4 +1,4 @@ -Webrecorder pywb 2.5 +Webrecorder pywb 2.6 ==================== .. image:: https://raw.githubusercontent.com/webrecorder/pywb/master/pywb/static/pywb-logo.png @@ -43,9 +43,13 @@ The 2.x release included a major overhaul of pywb and introduces many new featur * Improved 'calendar' query UI with incremental loading, grouping results by year and month, and updated replay banner. -* New in 2.4: Extensible UI customizations system for modifying all aspects of the UI. +* Extensible UI customizations system for modifying all aspects of the UI. -* New in 2.4: Robust access control system for blocking or excluding URLs, by prefix or by exact match. +* Robust access control system for blocking or excluding URLs, by prefix or by exact match. + +* New in 2.6: Access Control embargo and http-header control access settings. + +* New in 2.6: Support for localization and multi-language deployment. Please see the `full documentation `_ for more detailed info on all these features. @@ -68,6 +72,22 @@ To run and install locally you can: Consult the local or `online docs `_ for latest usage and configuration details. +Documentation +------------- + +The pywb documentation is extensive. Some links to a few key guides: + +* `Getting Started Guide `_ + +* `Embargo and Access Control Guide `_ + +* `Localization and Multi-Language Guide `_ + +* `Deployment Guide `_ + +* `OpenWayback Transition Guide `_ + + Contributions & Bug Reports --------------------------- diff --git a/pywb/version.py b/pywb/version.py index b84e19c4..fcc9ad4f 100644 --- a/pywb/version.py +++ b/pywb/version.py @@ -1,4 +1,4 @@ -__version__ = '2.6.0b4' +__version__ = '2.6.0' if __name__ == '__main__': print(__version__)