diff --git a/pungi.spec b/pungi.spec index 34acd7e8..747d540a 100644 --- a/pungi.spec +++ b/pungi.spec @@ -1,7 +1,7 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: pungi -Version: 3.01 +Version: 3.02 Release: 1%{?dist} Summary: Distribution compose tool @@ -9,7 +9,6 @@ Group: Development/Tools License: GPLv2 URL: https://fedorahosted.org/pungi Source0: https://fedorahosted.org/pungi/attachment/wiki/%{version}/%{name}-%{version}.tar.bz2 -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: createrepo >= 0.4.11 Requires: yum => 3.4.3-28 Requires: lorax @@ -57,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT /var/cache/pungi %changelog +* Thu Oct 31 2013 Dennis Gilmore - 3.02-1 +- fix typo in call to __version__ (Dennis Gilmore) + * Sun Oct 27 2013 Daniel Mach - 3.01-1 - Add 'make log' command to print changelog for spec. (Daniel Mach) - Implement %prepopulate config section as an additional package input. (Daniel Mach) diff --git a/setup.py b/setup.py index fa5ec9d1..2bc656c1 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from distutils.core import setup import glob setup(name='pungi', - version='3.01', # make sure it matches pypungi.__version__ + version='3.02', # make sure it matches pypungi.__version__ description='Distribution compose tool', author='Dennis Gilmore', author_email='dgilmore@fedoraproject.org', diff --git a/src/pypungi/__init__.py b/src/pypungi/__init__.py index 30078523..c5d31955 100644 --- a/src/pypungi/__init__.py +++ b/src/pypungi/__init__.py @@ -15,7 +15,7 @@ # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -__version__ = "3.01" +__version__ = "3.02" import yum