1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
name-template: v$RESOLVED_VERSION
tag-template: v$RESOLVED_VERSION
categories:
- title: ⚠️ Breaking Changes
label: breaking change
- title: 🚀 Features
label: feature
- title: 🐛 Bug Fixes
label: fix
- title: 🧰 Maintenance
label: chore
- title: ⬆️ Dependencies
label: dependencies
- title: 🔁 Continuous Integration
label: ci
template: |
# Changelog
$CHANGES
---
*Get it on PyPi:*
```
pip install pygti==$RESOLVED_VERSION
```
https://pypi.org/project/pygti/$RESOLVED_VERSION/
version-resolver:
major:
labels:
- 'breaking change'
minor:
labels:
- 'feature'
patch:
labels:
- 'chore'
- 'dependencies'
- 'fix'
- 'ci'
default: patch
|