Error in user YAML: (<unknown>): found character that cannot start any token while scanning for the next token at line 7 column 9
---
marp: true
size: 16:9
theme: gaia
class: lead
backgroundColor: #fff
backgroundImage: url('./assets/images/hero-background.svg')
footer: @gep13
---
- What is an issue?
- What is Semantic Versioning?
- What branching strategy should I use?
- What is GitVersion?
- What is GitReleaseManager?
...a simple set of rules and requirements that dictate how version numbers are assigned and incremented. These rules are based on, but not necessarily limited to, pre-existing widespread common practices in use in both closed and open-source software.
Given a version number MAJOR.MINOR.PATCH, increment the:
- MAJOR version when you make incompatible API changes
- MINOR version when you add functionality in a backwards-compatible manner
- PATCH version when you make backwards-compatible bug fixes
Additional labels for pre-release and build metadata are available as extensions to the MAJOR.MINOR.PATCH format.
- 0.1.0
- 0.3.13
- 1.0.0
- 0.2.0-alpha.3
- 0.2.0-alpha.3+Branch.develop.Sha.e6eb071cd30974b80d7e237b85e7729a1d791e1e
- Twitter: @gep13
- Mastodon: @gep13@mastodon.social
- Blog: https://gep13.co.uk
- GitHub: gep13
- GitVersion Documentation
- GitReleaseManager Documentation
- Git Branching Strategies
- GitFlow