aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClark Williams <williams@redhat.com>2015-11-23 15:46:44 -0600
committerClark Williams <williams@redhat.com>2015-11-23 15:46:44 -0600
commita0614bc2d54aa7e9c2bd9076813d2e27ee7f0587 (patch)
tree1306324a6959c1e4e6ad4605a46e609ae8272a2e
parent2310e3c9ddaea39627d1a0d3a67b8a9c95da325e (diff)
downloadrteval-v1/master.tar.gz
update to v1.41v1.41v1/master
Signed-off-by: Clark Williams <williams@redhat.com>
-rw-r--r--rteval.spec7
-rw-r--r--rteval/rteval.py2
-rw-r--r--setup.py2
3 files changed, 7 insertions, 4 deletions
diff --git a/rteval.spec b/rteval.spec
index 3a0cab6..d92987d 100644
--- a/rteval.spec
+++ b/rteval.spec
@@ -2,8 +2,8 @@
%{!?python_ver: %define python_ver %(%{__python} -c "import sys ; print sys.version[:3]")}
Name: rteval
-Version: 1.40
-Release: 2%{?dist}
+Version: 1.41
+Release: 1%{?dist}
Summary: Utility to evaluate system suitability for RT Linux
Group: Development/Tools
@@ -71,6 +71,9 @@ rm -rf $RPM_BUILD_ROOT
/usr/bin/rteval
%changelog
+* Mon Nov 23 2015 Clark Williams <williams@redhat.com> - 1.41-1
+- hackbench: fix naming error in logging filehandles
+
* Mon Nov 23 2015 Clark Williams <williams@redhat.com> - 1.40-2
- fix version mismatch in spec, setup and rteval
diff --git a/rteval/rteval.py b/rteval/rteval.py
index 4416d0f..0d1b02f 100644
--- a/rteval/rteval.py
+++ b/rteval/rteval.py
@@ -94,7 +94,7 @@ def sigterm_handler(signum, frame):
class RtEval(object):
def __init__(self, cmdargs):
- self.version = "1.40"
+ self.version = "1.41"
self.load_modules = []
self.workdir = os.getcwd()
self.reportdir = os.getcwd()
diff --git a/setup.py b/setup.py
index b1aff5a..f901307 100644
--- a/setup.py
+++ b/setup.py
@@ -9,7 +9,7 @@ import os
PYTHONLIB = join(get_python_lib(standard_lib=1, prefix=''), 'site-packages')
setup(name="rteval",
- version = "1.40",
+ version = "1.41",
description = "evaluate system performance for Realtime",
author = "Clark Williams",
author_email = "williams@redhat.com",