https://github.com/aichbauer/semver
https://github.com/aichbauer/semver
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/aichbauer/semver
- Owner: aichbauer
- Created: 2022-05-05T13:48:55.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-05-05T15:21:19.000Z (over 3 years ago)
- Last Synced: 2025-03-04T20:40:53.440Z (10 months ago)
- Size: 1000 Bytes
- Stars: 0
- Watchers: 3
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# SemVer
major.minor.patch
## Changelog
- create a changelog file
- patch, minor and major version release
- explain the bug fixes
- minor and major version release
- explain new features and how to use them
- major release
- explain the breaking changes and how to upgrade
## update the version
update the version within your project.
e.g. package.json, setup.cfg pom.xml,
## create a new commit
```sh
git commit -m "release v1.1.1"
```
## create annotated tag
```sh
git tag -a v1.1.1 -m "release v1.1.1"
```
## release new version
```sh
git push --follow-tags
```
## release on diff. platform
e.g. npm, pip, maven central repository
or to the companies private package manager