Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump v2.0.5 #252

Merged
merged 1 commit into from
Dec 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Comment on lines +150 to +156
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is a better practice to go through a PR than push to master directly.

```

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.