Skip to content

Commit eceb20c

Browse files
committed
Forgot to check in changed doc files for 2.0.0beta0
1 parent b6dcdc5 commit eceb20c

File tree

9 files changed

+134
-195
lines changed

9 files changed

+134
-195
lines changed

CHANGES.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ 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

1414

15-
2019-xx-xx 2.0.0...
15+
2020-04-05 2.0.0 beta 0
1616

1717
Features:
1818

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-2019 Roundup-Team
6+
Copyright (c) 2009-2020 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: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,12 @@ Roundup release checklist:
5151
hg status --rev 1.6.0:tip | sed -ne 's/^A //p' | while read i ; \
5252
do echo $i; grep "$i" MANIFEST; done | uniq -c
5353

54-
Anything with a count of 1 is not in the nanifest.
55-
If they are not, edit MANIFEST.in to include them. For format docs see
54+
Anything with a count of 1 is not in the manifest.
55+
If they are missing files that should be in the manifest,
56+
edit MANIFEST.in to include them. For format docs see
5657
http://docs.python.org/2/distutils/sourcedist.html#manifest-template
58+
(Notes files for the website and issue tracker shouldn't be in the
59+
manifest.)
5760
11. python setup.py sdist
5861
(if you find sdist a little verbose, add "--quiet" to the end of the
5962
command)

doc/acknowledgements.txt

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

16+
2.0.0b0
17+
~~~~~~~
18+
19+
Maintainer: Ralf Schlatterbeck, John Rouillard
20+
21+
Release Manager: John Rouillard
22+
23+
Developer activity by changesets::
24+
25+
[email protected] 133 ************************************************
26+
[email protected] 35 *************
27+
28+
29+
30+
1631
2.0.0a0
1732
~~~~~~~
1833

doc/announcement.txt

Lines changed: 105 additions & 184 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.0alpha0'
70+
__version__ = '2.0.0beta0'
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
@@ -129,8 +129,8 @@ def main():
129129
url='http://www.roundup-tracker.org',
130130
download_url='https://pypi.org/project/roundup',
131131
classifiers=[#'Development Status :: 5 - Production/Stable',
132-
#'Development Status :: 4 - Beta',
133-
'Development Status :: 3 - Alpha',
132+
'Development Status :: 4 - Beta',
133+
#'Development Status :: 3 - Alpha',
134134
'Environment :: Console',
135135
'Environment :: Web Environment',
136136
'Intended Audience :: Customer Service',

website/www/conf.py

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

4646
# General information about the project.
4747
project = u'Roundup'
48-
copyright = u'2009-2019, Richard Jones, Roundup-Team'
48+
copyright = u'2009-2020, 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
@@ -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.0alpha0'
57+
release = '2.0.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 & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ 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.0alpha0
14-
<https://pypi.org/project/roundup/2.0.0alpha0/>`_ which has `its own
13+
The current experimental version is `2.0.0beta1
14+
<https://pypi.org/project/roundup/2.0.0beta1/>`_ which has `its own
1515
set of docs`_. Read the :doc:`announcement for the new features
1616
<docs/announcement>`. These features include:
1717

0 commit comments

Comments
 (0)