Skip to content

Commit 620ab12

Browse files
committed
Implementing RELEASE.txt 2.1.0b1 release
Also spellcheck CHANGES.txt.
1 parent 340fbb8 commit 620ab12

File tree

9 files changed

+255
-140
lines changed

9 files changed

+255
-140
lines changed

CHANGES.txt

Lines changed: 7 additions & 7 deletions
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-
XXXX-XX-XX 2.0.1
14+
2021-06-13 2.1.0b1
1515

1616
Fixed:
1717

@@ -58,12 +58,12 @@ Fixed:
5858
the current run_tests.py. (reported by lmsteffan in irc)
5959
- issue2551104 - fix issue with markdown autolink next to punctuation (ced)
6060
- removed support for old style trackers that use dbinit.py and
61-
config.py. Also remove all uses of depricated imp module. (John Rouillard)
61+
config.py. Also remove all uses of deprecated imp module. (John Rouillard)
6262
- removed support for setting database type using
6363
<database>/backend_name. (John Rouillard)
6464
- fixed some issues when generating translations. Use mappings and
6565
named format parameters so translators can move substituted tokens
66-
in tranlsations.
66+
in translations.
6767
- in rest interface, fix uncaught exceptions when parsing invalid
6868
Content-Type and Accept headers. Document response formats more
6969
fully in doc/rest.txt.
@@ -109,10 +109,10 @@ Fixed:
109109
link to open the editor.
110110
- issue2551136 - timezone extention crash on Python 3.8. cgi.escape
111111
is used in some template to provide a select box of timezones. It
112-
uses cgi.escape that is depricated and removed from 3.8 and newer.
112+
uses cgi.escape that is deprecated and removed from 3.8 and newer.
113113
Use html.escape with fallback to cgi.escape. (Cedric Krier)
114114
- roundup-server can act as an SSL server. Usually SSL is provided by
115-
a front-end server like nginx, hiawtha, apache. The SSL parameters
115+
a front-end server like nginx, hiawatha, apache. The SSL parameters
116116
have been upgraded to TLS 1.1. Cert is RSA 2048 bytes with SHA512
117117
signature. Without these upgrades, ssl mode won't start. Note this
118118
exposes other issue with roundup-server operating as an SSL
@@ -130,7 +130,7 @@ Fixed:
130130
non-item context.
131131
- issue2551141 - roudup-admin returns no such class when restoring
132132
item with duplicate key. Fix incorrect error message when using
133-
roundup-admin to restore a user when the username is aleady in use.
133+
roundup-admin to restore a user when the username is already in use.
134134
(John Rouillard)
135135
- issue2551142 - Import of retired node with username after active
136136
node fails with unique constraint failure. (John Rouillard)
@@ -174,7 +174,7 @@ Features:
174174
tracker instances without copying code. Also move the test-detectors in
175175
tx_Source_detector.py to roundup/test for two reasons: It's used in the
176176
memorydb convenience functions and it may be useful in other tests. Make
177-
the prefix a paramter of the convenience functions to be usable in other
177+
the prefix a parameter of the convenience functions to be usable in other
178178
tests.
179179
- pytest suite now starts the server under wsgi and loads the home
180180
page. This test is skipped if the requests module is not installed.

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-2020 Roundup-Team
6+
Copyright (c) 2009-2021 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/)

RELEASE.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,8 +150,8 @@ Roundup release checklist:
150150
the gpg asc files and upload the .whl distribution and .whl.asc
151151
signature files together.
152152
14. Send doc/announcement.txt to [email protected] and
153-
154-
153+
154+
155155
14b. Update entry on https://freshcode.club/projects/roundup-tracker
156156
14c. Update entries for fossies by emailing announcement to
157157

doc/acknowledgements.txt

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,19 @@ ideas and everything else that helped!
1313
2.0
1414
---
1515

16+
2.1.0beta1
17+
~~~~~~~~~~
18+
19+
Maintainer: John Rouillard, Ralf Schlatterbeck
20+
21+
Release Manager: John Rouillard
22+
23+
Developer activity by changesets::
24+
25+
[email protected] 175 ***************************************************
26+
[email protected] 29 ********
27+
28+
1629
2.0.0
1730
~~~~~
1831

doc/announcement.txt

Lines changed: 224 additions & 124 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.0.0'
70+
__version__ = '2.1.0b1'
7171

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

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,8 +173,8 @@ def main():
173173
long_description=long_description,
174174
url='https://www.roundup-tracker.org',
175175
download_url='https://pypi.org/project/roundup',
176-
classifiers=['Development Status :: 5 - Production/Stable',
177-
#'Development Status :: 4 - Beta',
176+
classifiers=[#'Development Status :: 5 - Production/Stable',
177+
'Development Status :: 4 - Beta',
178178
#'Development Status :: 3 - Alpha',
179179
'Environment :: Console',
180180
'Environment :: Web Environment',

website/www/conf.py

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

4646
# General information about the project.
4747
project = u'Roundup'
48-
copyright = u'2009-2020, Richard Jones, Roundup-Team'
48+
copyright = u'2009-2021, Richard Jones, Roundup-Team'
4949

5050
# The version info for the project you're documenting, acts as replacement for
5151
# |version| and |release|, also used in various other places throughout the
5252
# built documents.
5353
#
5454
# The short X.Y version.
55-
version = '2.0'
55+
version = '2.1'
5656
# The full version, including alpha/beta/rc tags.
57-
release = '2.0.0'
57+
release = '2.1.0beta1'
5858

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

website/www/index.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ stable release (v1.6.1). These features include:
1919
* a new REST interface
2020
* updates to jinja2 templates including security improvements
2121

22+
The current latest release is 2.1.0beta1.
23+
2224
For more information see the :doc:`design overview <docs/design>`, and
2325
all the other :doc:`documentation <docs>`. Roundup has been deployed
2426
for:

0 commit comments

Comments
 (0)