diff --git a/ChangeLog b/ChangeLog index dc09b22..d9b5d81 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2014-04-10 Jan Dittberner + * 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 * renamed module from ddportfolio to debianmemberportfolio * add patch for DUCK URL by Paul Wise diff --git a/docs/source/conf.py b/docs/source/conf.py index f1afed6..bde4e28 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -53,9 +53,9 @@ copyright = u'2009-2014, Jan Dittberner' # built documents. # # The short X.Y version. -version = '0.3.1' +version = '0.3.2' # The full version, including alpha/beta/rc tags. -release = '0.3.1' +release = version # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index 2fd613b..a9ebba4 100644 --- a/setup.py +++ b/setup.py @@ -28,14 +28,14 @@ except ImportError: setup( name='debianmemberportfolio', - version='0.3.1', + version='0.3.2', description='service to create Debian Member Portfolio URLs', long_description="""This is a service implementation that returns a set of 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 a JSON formatted array of URLs.""", # 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', 'License :: DFSG approved', 'License :: OSI approved :: ' + @@ -46,7 +46,7 @@ setup( author_email='jan@dittberner.info', url='http://debian-stuff.dittberner.info/debianmemberportfolio', 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']), include_package_data=True, test_suite='nose.collector',