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 v1.4.2 #46

Merged
merged 4 commits into from
Oct 2, 2024
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
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@

## To be Released

* chore(deps): bump github.com/sirupsen/logrus from 1.8.1 to 1.9.0
* chore(deps): bump github.com/rollbar/rollbar-go from 1.4.4 to 1.4.5
## 1.4.2

* chore(deps): bump all dependencies
* chore(go): use go 1.22

## 1.4.1

Expand Down
29 changes: 21 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Rollbar Hook for [Logrus](https://github.com/sirupsen/logrus) v1.4.1
# Rollbar Hook for [Logrus](https://github.com/sirupsen/logrus) v1.4.2

## Setup

```sh
go get gopkg.in/Scalingo/logrus-rollbar.v1
go get github.com/Scalingo/logrus-rollbar
```

## Example
Expand All @@ -18,7 +18,8 @@ import (

"github.com/sirupsen/logrus"
"github.com/stvp/rollbar"
logrusrollbar "gopkg.in/Scalingo/logrus-rollbar.v1"

logrusrollbar "github.com/Scalingo/logrus-rollbar"
)


Expand Down Expand Up @@ -52,10 +53,22 @@ Bump new version number in:
Commit, tag and create a new release:

```sh
version="1.4.2"

Choose a reason for hiding this comment

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

Praise: thanks for updating the README.


git switch --create release/${version}
git add CHANGELOG.md README.md
git commit -m "Bump v1.4.1"
git tag v1.4.1
git push origin master
git push --tags
hub release create v1.4.1
git commit --message="Bump v${version}"
git push --set-upstream origin release/${version}
gh pr create --reviewer=EtienneM --title "$(git log -1 --pretty=%B)"
```

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

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

The title of the release should be the version number and the text of the
release is the same as the changelog.