Template:Patch-notes: Difference between revisions
Template page
More actions
Created page with "<noinclude> == Usage == {{Patch-notes |version = 0.9.13 |date = 2026-01-09 |type = Release |summary = Short one-line summary |breaking = * ... |features = * ... |fixes = * ... }} </noinclude> ; Patch notes for version {{{version}}} ; Date: {{{date|}}} ; Type: {{{type|Release}}} == Summary == {{{summary|}}} == Breaking changes == {{{breaking|None.}}} == New features == {{{features|None.}}} == Bug fixes == {{{fixes|None.}}}" |
No edit summary |
||
| Line 1: | Line 1: | ||
< | <includeonly> | ||
; Version: {{{version}}} | |||
; Date: {{{date|Unknown}}} | |||
; | |||
; Date: {{{date|}}} | |||
; Type: {{{type|Release}}} | ; Type: {{{type|Release}}} | ||
== Summary == | == Summary == | ||
{{{summary|}}} | {{{summary|No summary provided.}}} | ||
{{#if:{{{breaking|}}}| | |||
== Breaking changes == | == Breaking changes == | ||
{{{breaking | {{{breaking}}} | ||
}} | |||
{{#if:{{{features|}}}| | |||
== New features == | == New features == | ||
{{{features | {{{features}}} | ||
}} | |||
{{#if:{{{fixes|}}}| | |||
== Bug fixes == | == Bug fixes == | ||
{{{fixes| | {{{fixes}}} | ||
}} | |||
</includeonly> | |||
<noinclude> | |||
== Usage == | |||
Basic call on a patch-notes page: | |||
<pre> | |||
{{Patch notes | |||
|version = 0.9.13 | |||
|date = 2026-01-09 | |||
|type = Release | |||
|summary = Tight summary of what changed. | |||
|breaking = | |||
* Item 1 | |||
* Item 2 | |||
|features = | |||
* Item 1 | |||
* Item 2 | |||
|fixes = | |||
* Item 1 | |||
* Item 2 | |||
}} | |||
</pre> | |||
=== Parameters === | |||
* <code>version</code> – Required version string (for example <code>0.9.13</code>). | |||
* <code>date</code> – Release date of version (MM-DD-YYYY format). | |||
* <code>type</code> – Optional. Release type (<code>Release</code>, <code>Hotfix</code>, <code>Beta</code>). | |||
* <code>summary</code> – Optional high-level summary of version. | |||
* <code>breaking</code> – Optional. Bullet list of breaking changes. Section is hidden if left empty. | |||
* <code>features</code> – Optional. Bullet list of new features. Section is hidden if left empty. | |||
* <code>fixes</code> – Optional. Bullet list of bug fixes. Section is hidden if left empty. | |||
{{Patch-notes}} | |||
</noinclude> | |||
Revision as of 20:39, 9 January 2026
Usage
Basic call on a patch-notes page:
{{Patch notes
|version = 0.9.13
|date = 2026-01-09
|type = Release
|summary = Tight summary of what changed.
|breaking =
* Item 1
* Item 2
|features =
* Item 1
* Item 2
|fixes =
* Item 1
* Item 2
}}
Parameters
version– Required version string (for example0.9.13).date– Release date of version (MM-DD-YYYY format).type– Optional. Release type (Release,Hotfix,Beta).summary– Optional high-level summary of version.breaking– Optional. Bullet list of breaking changes. Section is hidden if left empty.features– Optional. Bullet list of new features. Section is hidden if left empty.fixes– Optional. Bullet list of bug fixes. Section is hidden if left empty.
- Version
- {{{version}}}
- Date
- Unknown
- Type
- Release
Summary
No summary provided.