diff --git a/centpkg.spec b/centpkg.spec index ea2d226..7304896 100644 --- a/centpkg.spec +++ b/centpkg.spec @@ -1,8 +1,8 @@ %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")} Name: centpkg -Version: 0.1 -Release: 2%{?dist} +Version: 0.2 +Release: 1%{?dist} Summary: CentOS utility for working with dist-git Group: Applications/System @@ -53,6 +53,9 @@ rm -rf %{buildroot} %changelog +* Sat Nov 23 2014 Brian Stinson bstinson@ksu.edu - 0.2-1 +- The srpm workflow to the CBS works now + * Sat Jul 05 2014 Brian Stinson bstinson@ksu.edu - 0.1-2 - Update readme and add exception checking when running toplevel commands diff --git a/setup.py b/setup.py index 74b6679..fe5f569 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup( name = "centpkg", - version = "0.1", + version = "0.2", author = "Brian Stinson", author_email = "bstinson@ksu.edu", description = "CentOS Plugin to rpkg for managing RPM package sources",