Skip to content

Commit

Permalink
v0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Jahaja committed Sep 24, 2014
1 parent 4bfd637 commit 7fc450d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
--- v0.6.0 [Not released] ---
--- v0.6.0 [2014-09-24] ---

* [NEW] Major updates to the UI design.

* [NEW] Added user proceses filtering to processes page.

* [FIX] Fixed bug where the highlighted text when searching a log could be misplaced.

--- v0.5.0 [2014-09-06] ---

* [NEW] Added HTTPS support.
Expand Down
2 changes: 1 addition & 1 deletion psdash/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.5.0"
__version__ = "0.6.0"
5 changes: 3 additions & 2 deletions psdash/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
from logging import getLogger
from flask import Flask
import zerorpc
from psdash import __version__
from psdash.node import LocalNode, RemoteNode
from psdash.web import fromtimestamp

Expand Down Expand Up @@ -42,7 +43,7 @@ def __init__(self, config_overrides=None, args=tuple()):

def _get_args(cls, args):
parser = argparse.ArgumentParser(
description='psdash %s - system information web dashboard' % '0.5.0'
description='psdash %s - system information web dashboard' % __version__
)
parser.add_argument(
'-l', '--log',
Expand Down Expand Up @@ -279,7 +280,7 @@ def _run_web(self):
self.server.serve_forever()

def run(self):
logger.info('Starting psdash v0.5.0')
logger.info('Starting psdash v%s' % __version__)

self._setup_locale()
self._setup_workers()
Expand Down

0 comments on commit 7fc450d

Please sign in to comment.