Skip to content

Commit 91a0f9f

Browse files
committed
Commits for roundup 2.0 release.
1 parent 0e35abc commit 91a0f9f

File tree

8 files changed

+39
-46
lines changed

8 files changed

+39
-46
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-
2020-XX-YY 2.0.0 beta 1
14+
2020-07-13 2.0.0
1515

1616
Fixed:
1717

RELEASE.txt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,14 @@ Roundup release checklist:
3737
Check that metadata is valid and long descriptions is proper reST:
3838
python setup.py check --restructuredtext --metadata --strict
3939
6. Clean out all *.orig, *.rej, .#* files from the source.
40+
6a. Rebuild .mo translation files in distribution - cd locale; make
4041
7. Remove previous build files
4142
python setup.py clean --all
42-
Rebuild
43+
rm -rf build/share # deletes locale .mo files
44+
Rebuild and install .mo files
4345
python setup.py build (sdist generation will fail if this isn't done)
4446
8. Rebuild documentation in "share/doc/roundup/html"
4547
python setup.py build_doc
46-
8a. Rebuild .mo translation files in distribution - cd locale; make
4748
9. python setup.py sdist --manifest-only
4849
10. Check the MANIFEST to make sure that any new files are included.
4950
(use hg status --rev <last release or tag>:tip to list changed
@@ -54,7 +55,7 @@ Roundup release checklist:
5455
do echo $i; grep "$i" MANIFEST; done | uniq -c
5556

5657
Anything with a count of 1 is not in the manifest.
57-
If they are missing files that should be in the manifest,
58+
If there are missing files that should be in the manifest,
5859
edit MANIFEST.in to include them. For format docs see
5960
http://docs.python.org/2/distutils/sourcedist.html#manifest-template
6061
(Notes files for the website and issue tracker shouldn't be in the

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.0.0
17+
~~~~~
18+
19+
Maintainer: Ralf Schlatterbeck, John Rouillard
20+
21+
Release Manager: John Rouillard
22+
23+
Developer activity by changesets::
24+
25+
[email protected] 62 ***************************************************
26+
[email protected] 11 *********
27+
28+
1629
2.0.0b0
1730
~~~~~~~
1831

doc/announcement.txt

Lines changed: 11 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
1-
I'm proud to release version 2.0.0beta0 of the Roundup issue tracker
1+
I'm proud to release version 2.0.0 of the Roundup issue tracker
22
which has been possible due to the help of several contributors. This
33
release contains some major changes, so make sure to read
44
`docs/upgrading.txt
5-
<http://www.roundup-tracker.org/dev-docs/upgrading.html>`_ to bring
6-
your tracker up to date. The changes, as usual, include some new
7-
features and many bug fixes.
5+
<http://www.roundup-tracker.org/docs/upgrading.html>`_ to bring
6+
your tracker up to date.
7+
8+
There are special directions for those using mysql backend.
9+
10+
The changes, as usual, include some new features and many bug fixes.
811

912
You can download it with:
1013

11-
pip download roundup==2.0.0beta0
14+
pip download roundup
1215

1316
then unpack and test/install the tarball.
1417

@@ -37,36 +40,14 @@ Among the notable improvements from the 1.6.1 release are:
3740
autoescape and translation library. Support for messages
3841
written in markdown added. SimpleMDE used as markdown editor to
3942
provide preview features. Thanks to Christof Meerwald.
40-
43+
44+
Fixes to mysql indexing may require a database dump/restore.
45+
4146
The file CHANGES.txt has a detailed list of feature additions and bug
4247
fixes for each release. The most recent changes from there are at the
4348
end of this announcement. Also see the information in
4449
doc/upgrading.txt.
4550

46-
How You Can Help
47-
================
48-
49-
We are looking for one or two front end developers to kick the tires
50-
on the rest interface. The rest interface is available by running
51-
demo.py as described below. If you are interested in helping please
52-
contact "rouilj+rit at ieee.org".
53-
54-
The Zope deployment mode has not had any testing under Python 3. We
55-
are looking for community involvement to help get this deployment
56-
mode validated. It may also have issues under Python 2. If you are
57-
interested in helping with this please see:
58-
https://issues.roundup-tracker.org/issue2141835
59-
60-
Email input using POP and IMAP modes need testing under Python 3
61-
and Python 2.
62-
63-
We have new documentation for deploying with apache and mod_wsgi. It
64-
needs testing and enhancement.
65-
66-
There are other documentation issues at:
67-
68-
https://issues.roundup-tracker.org/issue?@columns=title,id,activity,status&components=7&status=-1,1,2&@template=index&@action=search
69-
7051
If you find bugs, please report them to issues AT roundup-tracker.org
7152
or create an account at https://issues.roundup-tracker.org and open a
7253
new ticket. If you have patches to fix the issues they can be attached

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.0beta0'
70+
__version__ = '2.0.0'
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
@@ -128,8 +128,8 @@ def main():
128128
long_description=long_description,
129129
url='http://www.roundup-tracker.org',
130130
download_url='https://pypi.org/project/roundup',
131-
classifiers=[#'Development Status :: 5 - Production/Stable',
132-
'Development Status :: 4 - Beta',
131+
classifiers=['Development Status :: 5 - Production/Stable',
132+
#'Development Status :: 4 - Beta',
133133
#'Development Status :: 3 - Alpha',
134134
'Environment :: Console',
135135
'Environment :: Web Environment',

website/www/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
# The short X.Y version.
5555
version = '2.0'
5656
# The full version, including alpha/beta/rc tags.
57-
release = '2.0.0beta0'
57+
release = '2.0.0'
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: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,17 @@ command-line, web and e-mail interfaces. It is based on the winning
1010
design from Ka-Ping Yee in the Software Carpentry "Track" design
1111
competition.
1212

13-
The current experimental version is `2.0.0beta0
14-
<https://pypi.org/project/roundup/2.0.0beta0/>`_ which has `its own
15-
set of docs`_. Read the :doc:`announcement for the new features
16-
<docs/announcement>`. These features include:
13+
The current stable version of Roundup is 2.0.0 which has quite a
14+
comprehensive :doc:`feature set <docs/features>` compared to the last
15+
stable release (v1.6.1). These features include:
1716

1817
* Python 2 and Python 3 support
1918
* a new REST interface
2019
* updates to jinja2 templates including security improvements
2120

22-
The current stable version of Roundup is 1.6.1 which has quite a
23-
comprehensive :doc:`feature set <docs/features>`. For more
24-
information see the :doc:`design overview <docs/design>`, and all the
25-
other :doc:`documentation <docs>`. Roundup has been deployed for:
21+
For more information see the :doc:`design overview <docs/design>`, and
22+
all the other :doc:`documentation <docs>`. Roundup has been deployed
23+
for:
2624

2725
* bug tracking and TODO list management (the classic installation)
2826
* customer help desk support (with a wizard for the phone answerers, linking to networking,

0 commit comments

Comments
 (0)