update to v1.41

Signed-off-by: Clark Williams <williams@redhat.com>
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 @@
 /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 @@
 
 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 @@
 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",