Skip to content

Commit 126146a

Browse files
committed
2.2.0b1 release changes
1 parent 480fdf4 commit 126146a

File tree

9 files changed

+212
-227
lines changed

9 files changed

+212
-227
lines changed

CHANGES.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Python v2.5 and v2.6. Starting with the v1.6 releases of Roundup
1111
v2.7.2 or later are required to run newer releases of Roundup. From v2.0
1212
onwards Python 3.4 and later are also supported.
1313

14-
20xx-yy-zz 2.2.0
14+
2022-yy-zz 2.2.0
1515

1616
Fixed:
1717

COPYING.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Note links for http://www.zope.com/Marks and http://www.ekit.com/ are dead.
33
Roundup Licensing
44
-----------------
55

6-
Copyright (c) 2009-2021 Roundup-Team
6+
Copyright (c) 2009-2022 Roundup-Team
77
Copyright (c) 2003-2009 Richard Jones ([email protected])
88
Copyright (c) 2002 eKit.com Inc (http://www.ekit.com/)
99
Copyright (c) 2001 Bizar Software Pty Ltd (http://www.bizarsoftware.com.au/)

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ recursive-include share *
22
recursive-include roundup *.*
33
recursive-include frontends *.*
44
recursive-include scripts *.* *-*
5+
recursive-include scripts/Docker Dockerfile *.* *_*
56
recursive-include tools *.* base64
67
recursive-include test *.py *.txt
78
recursive-include doc *.html *.png *.txt *.css *.example

RELEASE.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ Roundup release checklist:
8787

8888
to create binary distributions in wheel format. (egg format is
8989
deprecated.)
90+
9091
10. Check the roundup.egg-info/SOURCES.txt to make sure that any new files are
9192
included. (use hg status --rev <last release or tag>:tip to list changed
9293
added and removed files. Last release e.g. 1.5.1 where tip is what would

doc/acknowledgements.txt

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,20 +13,29 @@ ideas and everything else that helped!
1313
2.2
1414
---
1515

16-
2.2.0
17-
~~~~~
16+
2.2.0b1
17+
~~~~~~~
1818

1919
Maintainer: John Rouillard, Ralf Schlatterbeck
2020

2121
Release Manager: John Rouillard
2222

2323
Developer activity by changesets::
2424

25-
FIXME
25+
[email protected] 224 ************************************************
26+
27+
aburke 1
28+
29+
2630

2731
Other contributers
2832

2933
Marcus Priesch
34+
John Kristensen (jerrykan)
35+
Ashely Burke
36+
Nagy Gabor
37+
Norbert Schlemmer
38+
Thomas Arendsen Hein
3039

3140
2.1
3241
---

doc/announcement.txt

Lines changed: 189 additions & 214 deletions
Large diffs are not rendered by default.

roundup/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,6 @@
6767
'''
6868
__docformat__ = 'restructuredtext'
6969

70-
__version__ = '2.2.0a0'
70+
__version__ = '2.2.0b1'
7171

7272
# vim: set filetype=python ts=4 sw=4 et si

setup.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -186,8 +186,8 @@ def main():
186186
long_description=long_description,
187187
url='https://www.roundup-tracker.org',
188188
download_url='https://pypi.org/project/roundup',
189-
classifiers=['Development Status :: 5 - Production/Stable',
190-
#'Development Status :: 4 - Beta',
189+
classifiers=[#'Development Status :: 5 - Production/Stable',
190+
'Development Status :: 4 - Beta',
191191
#'Development Status :: 3 - Alpha',
192192
'Environment :: Console',
193193
'Environment :: Web Environment',
@@ -204,12 +204,11 @@ def main():
204204
'Programming Language :: Python :: 2',
205205
'Programming Language :: Python :: 2.7',
206206
'Programming Language :: Python :: 3',
207-
'Programming Language :: Python :: 3.4',
208-
'Programming Language :: Python :: 3.5',
209207
'Programming Language :: Python :: 3.6',
210208
'Programming Language :: Python :: 3.7',
211209
'Programming Language :: Python :: 3.8',
212210
'Programming Language :: Python :: 3.9',
211+
'Programming Language :: Python :: 3.10',
213212
'Topic :: Communications :: Email',
214213
'Topic :: Office/Business',
215214
'Topic :: Software Development :: Bug Tracking',

website/www/conf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,16 +48,16 @@
4848

4949
# General information about the project.
5050
project = u'Roundup'
51-
copyright = u'2009-2021, Richard Jones, Roundup-Team'
51+
copyright = u'2009-2022, Richard Jones, Roundup-Team'
5252

5353
# The version info for the project you're documenting, acts as replacement for
5454
# |version| and |release|, also used in various other places throughout the
5555
# built documents.
5656
#
5757
# The short X.Y version.
58-
version = '2.1'
58+
version = '2.2'
5959
# The full version, including alpha/beta/rc tags.
60-
release = '2.1.0'
60+
release = '2.2.0b1'
6161

6262
# The language for content autogenerated by Sphinx. Refer to documentation
6363
# for a list of supported languages.

0 commit comments

Comments
 (0)