aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClark Williams <williams@redhat.com>2015-11-23 13:56:58 -0600
committerClark Williams <williams@redhat.com>2015-11-23 13:57:33 -0600
commit7851cffb5cbc93e9caa642835bc285e82b06d941 (patch)
tree2f5c62ea72a787a428054b00c6d54c089532c8df
parente8f183265bfca3eb270668edf01347bac8ff85bd (diff)
downloadrteval-7851cffb5cbc93e9caa642835bc285e82b06d941.tar.gz
version 1.40-2
fix version mixup between specfile, setup.py and rteval.py Signed-off-by: Clark Williams <williams@redhat.com>
-rw-r--r--rteval.spec5
-rw-r--r--rteval/rteval.py2
-rw-r--r--setup.py2
3 files changed, 6 insertions, 3 deletions
diff --git a/rteval.spec b/rteval.spec
index 1a11e66..3a0cab6 100644
--- a/rteval.spec
+++ b/rteval.spec
@@ -3,7 +3,7 @@
Name: rteval
Version: 1.40
-Release: 1%{?dist}
+Release: 2%{?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.40-2
+- fix version mismatch in spec, setup and rteval
+
* Fri Nov 20 2015 Clark Williams <williams@redhat.com> - 1.40-1
- hackbench: modify to avoid cross-node NUMA copies
diff --git a/rteval/rteval.py b/rteval/rteval.py
index 141fa20..4416d0f 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.39"
+ self.version = "1.40"
self.load_modules = []
self.workdir = os.getcwd()
self.reportdir = os.getcwd()
diff --git a/setup.py b/setup.py
index 887731e..b1aff5a 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.39",
+ version = "1.40",
description = "evaluate system performance for Realtime",
author = "Clark Williams",
author_email = "williams@redhat.com",