diff --git a/CHANGELOG b/CHANGELOG index aee6dde..f9ceb2d 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,4 +1,4 @@ ---- v0.1.2 [Not released] --- +--- v0.1.2 [2014-03-31] --- * [FIX] Fixed issue where a non-ascii process command-line would cause the process pages to crash. @@ -6,6 +6,8 @@ * [FIX] Fixed issue where a network interface alias would cause psdash to crash +* [FIX] Improved the Vagrantfile when using a windows host. + --- v0.1.1 [2014-03-29] --- * [FIX] Fixed error when specifying a unreadable log file. psdash will now check that diff --git a/README.md b/README.md index 21e4bf0..85871cf 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ Available command-line arguments: ``` usage: psdash [-h] [-l path] [-b host] [-p port] [-d] -psdash 0.1.1 - system information web dashboard +psdash 0.1.2 - system information web dashboard optional arguments: -h, --help show this help message and exit diff --git a/psdash/web.py b/psdash/web.py index faf663a..25b980f 100755 --- a/psdash/web.py +++ b/psdash/web.py @@ -364,7 +364,7 @@ def search_log(): def parse_args(): parser = argparse.ArgumentParser( - description="psdash %s - system information web dashboard" % "0.1.1" + description="psdash %s - system information web dashboard" % "0.1.2" ) parser.add_argument( "-l", "--log", diff --git a/setup.py b/setup.py index a44148c..d2a3a72 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ setup( name="psdash", - version="0.1.1", + version="0.1.2", description="Linux system information web dashboard", long_description="psdash is a system information web dashboard for linux using data mainly served by psutil", classifiers=[