Skip to content

Commit

Permalink
Merge pull request #252 from Scalingo/release/2.0.5
Browse files Browse the repository at this point in the history
Bump v2.0.5
  • Loading branch information
EtienneM authored Dec 27, 2023
2 parents 506c2ac + 1becfa5 commit 52089b3
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 6 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@

## To be released

* chore(deps): bump github.com/looplab/fsm from 0.3.0 to 1.0.0
* chore(deps): bump github.com/Scalingo/go-handlers from 1.6.0 to 1.7.0
## [2023-12-27] v2.0.5

* chore(deps): various updates

## [2022-12-30] v2.0.4

Expand Down
20 changes: 16 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# LinK v2.0.4
# LinK v2.0.5

![publish workflow](https://github.com/Scalingo/link/actions/workflows/publish.yml/badge.svg)

Expand Down Expand Up @@ -147,8 +147,20 @@ Bump new version number in:
Commit, tag and create a new release:

```sh
version="2.0.5"

git switch --create release/${version}
git add CHANGELOG.md README.md
git commit -m "Bump v2.0.4"
git tag v2.0.4
git push origin master v2.0.4
git commit -m "Bump v${version}"
git push --set-upstream origin release/${version}
gh pr create --reviewer=EtienneM --fill-first
```

Once the pull request merged, you can tag the new release.

```sh
git tag v${version}
git push origin master v${version}
```

A GitHub Action will create the release.

0 comments on commit 52089b3

Please sign in to comment.