Codebase list isso / c2e3ae1
New upstream release. Jelmer Vernooij 5 years ago
6 changed file(s) with 15 addition(s) and 5 deletion(s). Raw diff Collapse all Expand all
00 Changelog for Isso
11 ==================
2
3 0.12.1 (2019-01-19)
4 -------------------
5
6 - Revert fix for duplicate slashes, as it prevents isso from
7 starting in some cases. #523
28
39 0.12.0 (2019-01-18)
410 -------------------
0 isso (0.12.1-1) UNRELEASED; urgency=medium
1
2 * New upstream release.
3
4 -- Jelmer Vernooij <jelmer@debian.org> Sat, 19 Jan 2019 17:43:17 +0000
5
06 isso (0.12.0-1) unstable; urgency=medium
17
28 * New upstream release.
Binary diff not shown
00 Releasing steps
11 ===============
22
3 * Run ``make check``, ``python3 setup.py nosetests``, ``python2 setup.py nosetests``
3 * Run ``python3 setup.py nosetests``, ``python2 setup.py nosetests``
44 * Update version number in ``setup.py`` and ``CHANGES.rst``
5 * ``git commit -m "Preparing ${VERSION}"``
5 * ``git commit -m "Preparing ${VERSION}" setup.py CHANGES.rst``
66 * ``git tag -as ${VERSION}``
77 * ``make init all``
88 * ``./setup.py sdist``
7676 self.isso = isso
7777 self.conf = isso.conf.section("smtp")
7878 self.public_endpoint = isso.conf.get("server", "public-endpoint") or local("host")
79 if self.public_endpoint.endswith('/'):
80 self.public_endpoint = self.public_endpoint.rstrip('/')
8179 self.admin_notify = any((n in ("smtp", "SMTP")) for n in isso.conf.getlist("general", "notify"))
8280 self.reply_notify = isso.conf.getboolean("general", "reply-notifications")
8381
1414
1515 setup(
1616 name='isso',
17 version='0.12.0',
17 version='0.12.1',
1818 author='Martin Zimmermann',
1919 author_email='info@posativ.org',
2020 packages=find_packages(),