mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-22 06:53:52 +00:00
update the release process doc
This commit is contained in:
parent
7dd88a86f0
commit
ceb4d1353e
|
@ -1,7 +1,30 @@
|
||||||
# Release Process
|
# Release Process
|
||||||
|
|
||||||
```sh
|
## 1. Prepare the release note
|
||||||
make version VERSION=v1.18.2
|
|
||||||
|
You need to prepare the release note for your next release version.
|
||||||
|
|
||||||
|
The release notes are placed in the `doc/release` directory.
|
||||||
|
|
||||||
|
If your next version is `v1.20.2`, then you should put the release note in the following file:
|
||||||
|
|
||||||
|
```
|
||||||
|
doc/release/v1.20.2.md
|
||||||
```
|
```
|
||||||
|
|
||||||
go to <https://github.com/c9s/bbgo/releases/v1.18.2> to modify the changelog
|
## 2. Make the release
|
||||||
|
|
||||||
|
Run the following command to create the release:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
make version VERSION=v1.20.2
|
||||||
|
```
|
||||||
|
|
||||||
|
The above command wilL:
|
||||||
|
|
||||||
|
- Update and compile the migration scripts into go files.
|
||||||
|
- Bump the version name in the go code.
|
||||||
|
- Run git tag to create the tag.
|
||||||
|
- Run git push to push the created tag.
|
||||||
|
|
||||||
|
You can go to <https://github.com/c9s/bbgo/releases/v1.20.2> to modify the changelog
|
||||||
|
|
Loading…
Reference in New Issue
Block a user