mirror of
https://github.com/openimsdk/open-im-server.git
synced 2026-05-10 20:15:59 +08:00
b4dcbe7202
Signed-off-by: Xinwei Xiong(cubxxw-openim) <3293172751nss@gmail.com>
19 lines
292 B
Markdown
19 lines
292 B
Markdown
# Changelog
|
|
|
|
All notable changes to this project will be documented in this file.
|
|
|
|
|
|
## command
|
|
|
|
```bash
|
|
git-chglog --tag-filter-pattern 'v2.0.*' -o CHANGELOG-2.0.md
|
|
```
|
|
|
|
## create next tag
|
|
|
|
```bash
|
|
git-chglog --next-tag 2.0.0 -o CHANGELOG.md
|
|
git commit -am "release 2.0.0"
|
|
git tag 2.0.0
|
|
```
|