File tree 6 files changed +44
-5
lines changed
6 files changed +44
-5
lines changed Original file line number Diff line number Diff line change 1
1
3.0.0 (unreleased)
2
2
------------------
3
3
4
+ .. _2.0.11:
5
+
6
+ 2.0.11 (2020-08-21)
7
+ -------------------
8
+
9
+ - Drop support of Python 3.4.
10
+
4
11
- Changed the implementation of input autofocus from JavaScript to an HTML5
5
12
input attribute.
6
13
18
25
Default: ``on``.
19
26
(This is unchanged from the JavaScript implementation.)
20
27
28
+ - Replace the flake8-isort plugin with plain old isort.
29
+ See https://github.com/Pylons/deform/pull/427
30
+
31
+ - Improved the script that launches Selenium webdriver to clean up the locale
32
+ directory after completing a run of functional tests so that its files do not
33
+ get committed by accident. We also enforce coding style and add a formatter,
34
+ and improved the contributing documentation.
35
+ See https://github.com/Pylons/deform/pull/428
36
+
37
+ - Updated Bootstrap to 3.4.1.
38
+
39
+
40
+ .. _2.0.10:
21
41
22
42
2.0.10 (2020-07-03)
23
43
-------------------
24
44
25
45
- Correct release date.
26
46
27
47
48
+ .. _2.0.9:
49
+
28
50
2.0.9 (2020-07-03)
29
51
------------------
30
52
53
+ - Added CSRF test to pass coverage on schema.py.
54
+ See https://github.com/Pylons/deform/pull/403
55
+
56
+ - Modified the DateTimeInputWidget to use HTML5 date/time input types on
57
+ browsers that support it.
58
+ See https://github.com/Pylons/deform/pull/406
59
+
60
+ - Add new translations for Swahili (sw_KE) locale.
61
+ See https://github.com/Pylons/deform/pull/409
62
+
31
63
- Add boolean HTML attributes per Chameleon 3.8.0.
32
64
33
65
All checkboxes, radios, and selects that use boolean HTML attributes
39
71
See https://github.com/Pylons/deform/issues/417
40
72
41
73
74
+ .. _2.0.8:
75
+
42
76
2.0.8 (2019-10-07)
43
77
------------------
44
78
Original file line number Diff line number Diff line change @@ -19,6 +19,8 @@ Prepare new release branch
19
19
20
20
- Create a new release branch, incrementing the version number.
21
21
22
+ - Align the release number with deformdemo.
23
+
22
24
- Do any necessary branch merges (e.g., master to branch, branch to master).
23
25
24
26
- On release branch:
@@ -62,13 +64,16 @@ Prepare new release branch
62
64
63
65
- Release the wheels to PyPI:
64
66
65
- $VENV/bin/twine upload dist/deform-X.Y.Z*
67
+ $VENV/bin/twine upload dist/deform-X.Y.Z- *
66
68
67
69
- Upload a git tag for the release:
68
70
69
71
git tag X.Y.Z
70
72
git push origin X.Y.Z
71
73
74
+ - Add a release on Github.
75
+ https://github.com/Pylons/deform/releases
76
+
72
77
- Update RTD to render a new version of the docs at that tag X.Y.Z and set
73
78
X.Y.Z as the default branch such that ``/latest/`` points to it.
74
79
Original file line number Diff line number Diff line change 2
2
tinymce_options tinymce_options|field.widget.tinymce_options;
3
3
oid oid|field.oid;
4
4
name name|field.name;"
5
-
6
5
xmlns : i18n =" http://xml.zope.org/namespaces/i18n"
7
6
i18n : domain =" deform"
8
7
tal : omit-tag =" " >
15
14
}
16
15
</style >
17
16
<textarea id =" ${oid}" name =" ${name}"
18
- class =' tinymce form-control' tal : content =" structure cstruct" />
17
+ class =' tinymce form-control' tal : content =" structure cstruct" />
19
18
<span id =" ${oid}-preload" class =" tinymce-preload"
20
19
tal : content =" structure cstruct" />
21
20
<script type =" text/javascript" >
Original file line number Diff line number Diff line change 173
173
# Output file base name for HTML help builder.
174
174
htmlhelp_basename = 'deform'
175
175
176
+ smartquotes = False
176
177
177
178
# Options for LaTeX output
178
179
# ------------------------
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ exclude = '''
23
23
'''
24
24
25
25
# This next section only exists for people that have their editors
26
- # automatically call isort.
26
+ # automatically call isort. Black already sorts entries on its own when run.
27
27
[tool .isort ]
28
28
combine_as_imports = true
29
29
default_section = " THIRDPARTY"
Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ basepython = python3.6
66
66
whitelist_externals = make
67
67
commands =
68
68
pip install deform[docs]
69
- make -C docs html epub BUILDDIR ={envdir} " SPHINXOPTS=-W -E -D suppress_warnings=ref.term "
69
+ make -C docs html epub BUILDDIR ={envdir} " SPHINXOPTS=-W -E"
70
70
71
71
# Selenium tests are slow, run them against one
72
72
# interpreter only
You can’t perform that action at this time.
0 commit comments