Skip to content

Commit f1b747e

Browse files
committed
Add version 0.1.0
1 parent 6044cc0 commit f1b747e

File tree

1 file changed

+41
-0
lines changed

1 file changed

+41
-0
lines changed

CHANGELOG.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
6+
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
7+
8+
## Releases
9+
10+
### [0.1.0] - 2022-01-03
11+
12+
* Initial release
13+
* Add help and version area
14+
* Add patch, minor and major mode
15+
* Add direct version change mode
16+
* Add Show hints area
17+
* Add test modus
18+
* Add README.md
19+
* Add LICENSE.md
20+
21+
## Add new version
22+
23+
```bash
24+
# Checkout master branch
25+
$ git checkout main && git pull
26+
27+
# Check current version
28+
$ bin/version-manager --current
29+
30+
# Change changelog
31+
$ vi CHANGELOG.md
32+
33+
# Increase patch version
34+
$ bin/version-manager --patch
35+
36+
# Push new version
37+
$ git add CHANGELOG.md VERSION && git commit -m "Add version $(cat VERSION)" && git push
38+
39+
# Tag and push new version
40+
$ git tag -a "$(cat VERSION)" -m "Version $(cat VERSION)" && git push origin "$(cat VERSION)"
41+
```

0 commit comments

Comments
 (0)