summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArnaldo Carvalho de Melo <acme@redhat.com>2013-02-01 14:03:07 -0300
committerArnaldo Carvalho de Melo <acme@redhat.com>2013-02-01 14:03:07 -0300
commit743a68c8f250639a9c3da8d107ce3d88654f4690 (patch)
tree19805fb07136c7209e55b59ab7c241217b1c75ab
parent6fc7e65d9f5c38dcdaaf3247dbb4a07c731888e2 (diff)
downloadtuna-743a68c8f250639a9c3da8d107ce3d88654f4690.tar.gz
0.10.4v0.10.4
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
-rw-r--r--ChangeLog9
-rw-r--r--rpm/SPECS/tuna.spec5
-rwxr-xr-xsetup.py2
-rwxr-xr-xtuna-cmd.py2
4 files changed, 15 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index d6160c0..969f2fc 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+* Fri Feb 1 2013 Arnaldo Carvalho de Melo <acme@redhat.com> - 0.10.4-1
+
+63580be procview: Allow configuring a single thread
+ Fixes https://bugzilla.redhat.com/show_bug.cgi?id=601234
+5d4ee70 tuna: Tighten "No such process" schedutils exception handling
+cca561d tuna: Catch OSError exceptions from python-schedutils
+ Fixes https://bugzilla.redhat.com/show_bug.cgi?id=871598
+07907b3 tuna: Add man page for command line
+
* Fri Aug 24 2012 Arnaldo Carvalho de Melo <acme@redhat.com> - 0.10.3-1
. Fix exception on ARM
diff --git a/rpm/SPECS/tuna.spec b/rpm/SPECS/tuna.spec
index 5a6ce96..78322e2 100644
--- a/rpm/SPECS/tuna.spec
+++ b/rpm/SPECS/tuna.spec
@@ -2,7 +2,7 @@
%{!?python_ver: %define python_ver %(%{__python} -c "import sys ; print sys.version[:3]")}
Name: tuna
-Version: 0.10.3
+Version: 0.10.4
Release: 1%{?dist}
License: GPLv2
Summary: Application tuning GUI & command line utility
@@ -89,6 +89,9 @@ rm -rf %{buildroot}
%doc docs/oscilloscope+tuna.pdf
%changelog
+* Fri Feb 1 2013 Arnaldo Carvalho de Melo <acme@redhat.com> - 0.10.4-1
+- New upstream release
+
* Fri Aug 24 2012 Arnaldo Carvalho de Melo <acme@redhat.com> - 0.10.3-1
- New upstream release
diff --git a/setup.py b/setup.py
index 1d64f65..953e9e8 100755
--- a/setup.py
+++ b/setup.py
@@ -12,7 +12,7 @@ if isfile("MANIFEST"):
PYTHONLIB = join(get_python_lib(standard_lib=1, prefix=''), 'site-packages')
setup(name="tuna",
- version = "0.10.3",
+ version = "0.10.4",
description = "Application tuning GUI",
author = "Arnaldo Carvalho de Melo",
author_email = "acme@redhat.com",
diff --git a/tuna-cmd.py b/tuna-cmd.py
index 17bd392..460b135 100755
--- a/tuna-cmd.py
+++ b/tuna-cmd.py
@@ -37,7 +37,7 @@ except NameError:
nr_cpus = None
ps = None
irqs = None
-version = "0.10.3"
+version = "0.10.4"
def usage():
print _('Usage: tuna [OPTIONS]')