diff --git a/pypi2spec.spec b/pypi2spec.spec index 9dfefb2..61c3176 100644 --- a/pypi2spec.spec +++ b/pypi2spec.spec @@ -1,6 +1,6 @@ Name: pypi2spec -Version: 0.3.0 -Release: 2%{?dist} +Version: 0.4.0 +Release: 1%{?dist} Summary: Python script to generate RPM spec file for PyPI projects License: GPLv3+ URL: http://github.com/pypingou/pypi2spec @@ -32,6 +32,10 @@ install -pm644 pypi2spec/specfile.tpl %{buildroot}%{python2_sitelib}/pypi2spec/ %{python2_sitelib}/* %changelog +* Tue Sep 30 2014 Pierre-Yves Chibon - 0.4.0-1 +- Update to 0.4.0 +- Drop the doap format in favor of the json output + * Tue Dec 10 2013 Christopher Meng - 0.3.0-2 - Beautify SPEC syntax. diff --git a/pypi2spec/__init__.py b/pypi2spec/__init__.py index 1ca3970..533408f 100644 --- a/pypi2spec/__init__.py +++ b/pypi2spec/__init__.py @@ -31,7 +31,7 @@ logging.basicConfig() LOG = logging.getLogger('Pypi2spec') #LOG.setLevel('DEBUG') -__version__ = '0.3.0' +__version__ = '0.4.0' def create_conf(configfile):