Skip to content

Commit

Permalink
Merge pull request #123 from Scalingo/docs/release_instructions
Browse files Browse the repository at this point in the history
docs(readme): instructions to release a new version
  • Loading branch information
Soulou authored Jul 30, 2021
2 parents b1938e1 + c47d973 commit de54094
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# LinK
# LinK v1.9.3
[![Build Status](https://travis-ci.org/Scalingo/link.svg?branch=master)](https://travis-ci.org/Scalingo/link)

> Link is not Keepalived
Expand Down Expand Up @@ -135,3 +135,20 @@ ip link set eth12 up
```

The script `start.sh` can be executed as root to automatically do that.

## Release a New Version

Bump new version number in:

- `CHANGELOG.md`
- `README.md`

Commit, tag and create a new release:

```sh
git add CHANGELOG.md README.md
git commit -m "Bump v1.9.3"
git tag v1.9.3
git push origin master v1.9.3
hub release create v1.9.3
```

0 comments on commit de54094

Please sign in to comment.