diff --git a/CHANGELOG b/CHANGELOG index ed8017b..bb996de 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,7 +1,15 @@ ---- v0.x.x [Not released] --- +--- v0.3.0 [2014-04-15] --- * [NEW] Added a PSDASH_URL_PREFIX configuration setting to allow psdash to be served from a sub-url rather than always on root. +* [NEW] Now updating the list of available logs every minute. + +* [NEW] The list of logs is now sorted in alphabetical order. + +* [FIX] Fixed bug where the view logs page would crash if a previously added log becomes unavailable. + +* [FIX] Fix for Python 3 support. + --- v0.2.0 [2014-04-05] --- * [NEW] It's now possible to pass a pattern (e.g /var/log/**/*.log) when adding log files through the arg option --log. diff --git a/README.md b/README.md index 948b38a..caf3961 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ Available command-line arguments: ``` usage: psdash [-h] [-l path] [-b host] [-p port] [-d] -psdash 0.2.0 - system information web dashboard +psdash 0.3.0 - system information web dashboard optional arguments: -h, --help show this help message and exit diff --git a/psdash/__init__.py b/psdash/__init__.py index d3ec452..f2b3589 100644 --- a/psdash/__init__.py +++ b/psdash/__init__.py @@ -1 +1 @@ -__version__ = "0.2.0" +__version__ = "0.3.0" \ No newline at end of file diff --git a/psdash/web.py b/psdash/web.py index c9290df..1a6aad5 100755 --- a/psdash/web.py +++ b/psdash/web.py @@ -417,7 +417,7 @@ def search_log(): def parse_args(): parser = argparse.ArgumentParser( - description="psdash %s - system information web dashboard" % "0.2.0" + description="psdash %s - system information web dashboard" % "0.3.0" ) parser.add_argument( "-l", "--log", @@ -493,7 +493,7 @@ def enable_verbose_logging(): def main(): setup_logging() - logger.info("Starting psdash v0.2.0") + logger.info("Starting psdash v0.3.0") # This set locale to the user default (usually controlled by the LANG env var) locale.setlocale(locale.LC_ALL, "")