New, updated, and deprecated options in {{ release }} for {{ codename }}
{% if new_opts %}
New options
Option = default value |
(Type) Help string |
{% for cells in new_opts %}
{% for cell in cells %}
{{ cell }} |
{% endfor %}
{% endfor %}
{% endif %}
{% if new_defaults %}
New default values
Option |
Previous default value |
New default value |
{% for cells in new_defaults %}
{% for cell in cells %}
{{ cell }} |
{% endfor %}
{% endfor %}
{% endif %}
{% if deprecated_opts %}
Deprecated options
Deprecated option |
New Option |
{% for cells in deprecated_opts %}
{% for cell in cells %}
{{ cell }} |
{% endfor %}
{% endfor %}
{% endif %}
{% if not new_opts and not new_defaults and not deprecated_opts %}
There are no new, updated, and deprecated options in {{ release }} for {{ codename }}.
{% endif %}