Skip to content

Commit cea1c5d

Browse files
committed
v0.3.0
1 parent 481a429 commit cea1c5d

File tree

4 files changed

+13
-5
lines changed

4 files changed

+13
-5
lines changed

CHANGELOG

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,15 @@
1-
--- v0.x.x [Not released] ---
1+
--- v0.3.0 [2014-04-15] ---
22

33
* [NEW] Added a PSDASH_URL_PREFIX configuration setting to allow psdash to be served from a sub-url rather than always on root.
44

5+
* [NEW] Now updating the list of available logs every minute.
6+
7+
* [NEW] The list of logs is now sorted in alphabetical order.
8+
9+
* [FIX] Fixed bug where the view logs page would crash if a previously added log becomes unavailable.
10+
11+
* [FIX] Fix for Python 3 support.
12+
513
--- v0.2.0 [2014-04-05] ---
614

715
* [NEW] It's now possible to pass a pattern (e.g /var/log/**/*.log) when adding log files through the arg option --log.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Available command-line arguments:
4343
```
4444
usage: psdash [-h] [-l path] [-b host] [-p port] [-d]
4545
46-
psdash 0.2.0 - system information web dashboard
46+
psdash 0.3.0 - system information web dashboard
4747
4848
optional arguments:
4949
-h, --help show this help message and exit

psdash/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.2.0"
1+
__version__ = "0.3.0"

psdash/web.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -417,7 +417,7 @@ def search_log():
417417

418418
def parse_args():
419419
parser = argparse.ArgumentParser(
420-
description="psdash %s - system information web dashboard" % "0.2.0"
420+
description="psdash %s - system information web dashboard" % "0.3.0"
421421
)
422422
parser.add_argument(
423423
"-l", "--log",
@@ -493,7 +493,7 @@ def enable_verbose_logging():
493493
def main():
494494
setup_logging()
495495

496-
logger.info("Starting psdash v0.2.0")
496+
logger.info("Starting psdash v0.3.0")
497497

498498
# This set locale to the user default (usually controlled by the LANG env var)
499499
locale.setlocale(locale.LC_ALL, "")

0 commit comments

Comments
 (0)