|
14 | 14 |
|
15 | 15 | # The tags and description to use in creating subsets of PRs |
16 | 16 | TAGS_METADATA_BASE = { |
| 17 | + "new": { |
| 18 | + "tags": ["feature", "new"], |
| 19 | + "pre": ["NEW"], |
| 20 | + "description": "New features added", |
| 21 | + }, |
17 | 22 | "enhancement": { |
18 | 23 | "tags": ["enhancement", "feature", "enhancements"], |
| 24 | + "pre": ["NEW", "ENH"], |
19 | 25 | "description": "Enhancements made", |
20 | 26 | }, |
21 | | - "bug": {"tags": ["bug", "bugfix", "bugs"], "description": "Bugs fixed",}, |
| 27 | + "bug": { |
| 28 | + "tags": ["bug", "bugfix", "bugs"], |
| 29 | + "pre": ["FIX", "BUG"], |
| 30 | + "description": "Bugs fixed", |
| 31 | + }, |
22 | 32 | "maintenance": { |
23 | 33 | "tags": ["maintenance", "maint"], |
| 34 | + "pre": ["MAINT"], |
24 | 35 | "description": "Maintenance and upkeep improvements", |
25 | 36 | }, |
26 | 37 | "documentation": { |
27 | 38 | "tags": ["documentation", "docs", "doc"], |
| 39 | + "pre": ["DOC", "DOCS"], |
28 | 40 | "description": "Documentation improvements", |
29 | 41 | }, |
30 | | - "api_change": {"tags": ["api-change", "apichange"], "description": "API Changes",}, |
| 42 | + "api_change": { |
| 43 | + "tags": ["api-change", "apichange"], |
| 44 | + "tags": ["BREAK", "BREAKING", "UPGRADE"], |
| 45 | + "description": "API and Breaking Changes", |
| 46 | + }, |
| 47 | + "deprecate": { |
| 48 | + "tags": ["deprecation", "deprecate"], |
| 49 | + "tags": ["DEPRECATE", "DEPRECATION"], |
| 50 | + "description": "Deprecated features", |
| 51 | + }, |
31 | 52 | } |
32 | 53 |
|
33 | 54 |
|
|
0 commit comments