prepare release 0.3.2
- update ChangeLog - bump version number in docs/source/conf.py and setup.py
This commit is contained in:
parent
923c463592
commit
871284270d
3 changed files with 9 additions and 5 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
2014-04-10 Jan Dittberner <jan@dittberner.info>
|
||||||
|
* add patch by Paul Wise to use SSL where available
|
||||||
|
* add patch by Paul Wise to fix link to the contributors site
|
||||||
|
|
||||||
2014-02-09 Jan Dittberner <jan@dittberner.info>
|
2014-02-09 Jan Dittberner <jan@dittberner.info>
|
||||||
* renamed module from ddportfolio to debianmemberportfolio
|
* renamed module from ddportfolio to debianmemberportfolio
|
||||||
* add patch for DUCK URL by Paul Wise
|
* add patch for DUCK URL by Paul Wise
|
||||||
|
|
|
@ -53,9 +53,9 @@ copyright = u'2009-2014, Jan Dittberner'
|
||||||
# built documents.
|
# built documents.
|
||||||
#
|
#
|
||||||
# The short X.Y version.
|
# The short X.Y version.
|
||||||
version = '0.3.1'
|
version = '0.3.2'
|
||||||
# The full version, including alpha/beta/rc tags.
|
# The full version, including alpha/beta/rc tags.
|
||||||
release = '0.3.1'
|
release = version
|
||||||
|
|
||||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||||
# for a list of supported languages.
|
# for a list of supported languages.
|
||||||
|
|
6
setup.py
6
setup.py
|
@ -28,14 +28,14 @@ except ImportError:
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='debianmemberportfolio',
|
name='debianmemberportfolio',
|
||||||
version='0.3.1',
|
version='0.3.2',
|
||||||
description='service to create Debian Member Portfolio URLs',
|
description='service to create Debian Member Portfolio URLs',
|
||||||
long_description="""This is a service implementation that returns a set of
|
long_description="""This is a service implementation that returns a set of
|
||||||
personalized URLs as outlined in http://wiki.debian.org/DDPortfolio. It
|
personalized URLs as outlined in http://wiki.debian.org/DDPortfolio. It
|
||||||
takes the Debian Member's full name and email address as input and returns
|
takes the Debian Member's full name and email address as input and returns
|
||||||
a JSON formatted array of URLs.""",
|
a JSON formatted array of URLs.""",
|
||||||
# Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
|
# Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
|
||||||
classifiers=['Development Status :: 3 - Alpha',
|
classifiers=['Development Status :: 5 - Production/Stable',
|
||||||
'Environment :: Web Environment',
|
'Environment :: Web Environment',
|
||||||
'License :: DFSG approved',
|
'License :: DFSG approved',
|
||||||
'License :: OSI approved :: ' +
|
'License :: OSI approved :: ' +
|
||||||
|
@ -46,7 +46,7 @@ setup(
|
||||||
author_email='jan@dittberner.info',
|
author_email='jan@dittberner.info',
|
||||||
url='http://debian-stuff.dittberner.info/debianmemberportfolio',
|
url='http://debian-stuff.dittberner.info/debianmemberportfolio',
|
||||||
license='AGPL-3.0+',
|
license='AGPL-3.0+',
|
||||||
install_requires=["Pylons>=0.10rc1", 'babel>=0.9.4'],
|
install_requires=["Pylons>=1.0", 'babel>=0.9.6'],
|
||||||
packages=find_packages(exclude=['ez_setup']),
|
packages=find_packages(exclude=['ez_setup']),
|
||||||
include_package_data=True,
|
include_package_data=True,
|
||||||
test_suite='nose.collector',
|
test_suite='nose.collector',
|
||||||
|
|
Loading…
Reference in a new issue