summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArnaldo Carvalho de Melo <acme@redhat.com>2011-02-23 15:32:17 -0300
committerArnaldo Carvalho de Melo <acme@redhat.com>2011-02-23 15:32:17 -0300
commitf80d2b54b911f412ff25e66e56dc246da4eaaa4e (patch)
treebd98e53ef242333c46fe15f6a11af44281f0833c
parent3b54abd43cf6ad2b442ef51401dac0c3407cdb76 (diff)
downloadtuna-f80d2b54b911f412ff25e66e56dc246da4eaaa4e.tar.gz
0.10
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
-rw-r--r--ChangeLog8
-rw-r--r--rpm/SPECS/tuna.spec5
-rwxr-xr-xsetup.py2
-rwxr-xr-xtuna-cmd.py4
4 files changed, 15 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 0c82fd2..c6b3ad5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+* Wed Feb 23 2011 Arnaldo Carvalho de Melo <acme@redhat.com> - 0.10-1
+
+[acme@emilia tuna]$ git log v0.9.4.. --format=oneline --abbrev-commit
+3b54abd perf: Create the threads pidstat member when we notice the first thread
+04f26d1 gui: Fixup perf.evlist constructor call
+00a2aa4 gui: Use perf if available
+f130d84 cmdline: Alert the user when GUI packages are not installed
+
* Mon May 10 2010 Arnaldo Carvalho de Melo <acme@redhat.com> - 0.9.3-1
[acme@mica tuna]$ git log v0.9.2.. --format=oneline --abbrev-commit
diff --git a/rpm/SPECS/tuna.spec b/rpm/SPECS/tuna.spec
index face758..296255a 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.9.4
+Version: 0.10
Release: 1%{?dist}
License: GPLv2
Summary: Application tuning GUI & command line utility
@@ -87,6 +87,9 @@ rm -rf %{buildroot}
%doc docs/oscilloscope+tuna.pdf
%changelog
+* Wed Feb 23 2011 Arnaldo Carvalho de Melo <acme@redhat.com> - 0.10
+- New upstream release
+
* Mon May 17 2010 Arnaldo Carvalho de Melo <acme@redhat.com> - 0.9.3-1
- New upstream release
- Fixes the folowing bugzilla.redhat.com tickets:
diff --git a/setup.py b/setup.py
index 0991584..5de0fc6 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.9.4",
+ version = "0.10",
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 cc74e73..108f030 100755
--- a/tuna-cmd.py
+++ b/tuna-cmd.py
@@ -2,7 +2,7 @@
# -*- python -*-
# -*- coding: utf-8 -*-
# tuna - Application Tuning GUI
-# Copyright (C) 2008, 2009 Red Hat Inc.
+# Copyright (C) 2008, 2009, 2010, 2011 Red Hat Inc.
# Arnaldo Carvalho de Melo <acme@redhat.com>
#
# This application is free software; you can redistribute it and/or
@@ -37,7 +37,7 @@ except NameError:
nr_cpus = None
ps = None
irqs = None
-version = "0.9.4"
+version = "0.10"
def usage():
print _('Usage: tuna [OPTIONS]')