Skip to content

Commit

Permalink
Merge pull request #262 from airbrake/gobrake-version-update
Browse files Browse the repository at this point in the history
Updated changelog, notifier version and readme
  • Loading branch information
chimanjain authored Apr 13, 2022
2 parents f55c26e + 41d73e3 commit 9ad6424
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 7 deletions.
19 changes: 18 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,23 @@

## master

## [v5.3.0][v5.3.0] (february 7, 2022)
## [v5.4.0][v5.4.0] (April 13, 2022)

* Added the [Echo](https://github.com/labstack/echo) integration ([#239](https://github.com/airbrake/gobrake/pull/239))

* Added the [Iris](https://github.com/kataras/iris) integration ([#241](https://github.com/airbrake/gobrake/pull/241))

* Added the [Beego](https://github.com/beego/beego) integration ([#245](https://github.com/airbrake/gobrake/pull/245))

* Added the [net/http](https://pkg.go.dev/net/http) integration ([#246](https://github.com/airbrake/gobrake/pull/246))

* Added the [gorilla/mux](https://github.com/gorilla/mux) integration ([#249](https://github.com/airbrake/gobrake/pull/249))

* Added the [fasthttp](https://github.com/valyala/fasthttp) integration ([#252](https://github.com/airbrake/gobrake/pull/252))

* Added the [Buffalo](https://github.com/gobuffalo/buffalo) integration ([#256](https://github.com/airbrake/gobrake/pull/255))

## [v5.3.0][v5.3.0] (February 7, 2022)

* Added the [Fiber](https://github.com/gofiber/fiber) integration ([#227](https://github.com/airbrake/gobrake/pull/227)),
([#232](https://github.com/airbrake/gobrake/pull/232))
Expand Down Expand Up @@ -124,3 +140,4 @@ Features:
[v5.1.1]: https://github.com/airbrake/gobrake/releases/tag/v5.1.1
[v5.2.0]: https://github.com/airbrake/gobrake/releases/tag/v5.2.0
[v5.3.0]: https://github.com/airbrake/gobrake/releases/tag/v5.3.0
[v5.4.0]: https://github.com/airbrake/gobrake/releases/tag/v5.4.0
23 changes: 18 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ is extremely lightweight, with minimal overhead.
* Automatic deploy tracking
* Performance monitoring features such as HTTP route statistics, SQL queries,
and Job execution statistics
* Integrations with [Beego][beego], [Gin][gin], [Negroni][negroni] and [Fiber][fiber]
* Integrations with [Beego][beego], [Buffalo][buffalo], [Echo][echo], [fasthttp][fasthttp], [Fiber][fiber],
[Gin][gin], [gorilla/mux][gorilla], [Iris][iris], [Negroni][negroni] and [net/http][nethttp]
* Last but not least, we follow [semantic versioning 2.0.0][semver2]

## Installation
Expand Down Expand Up @@ -109,10 +110,16 @@ documentation][docs].
> **Note**: Gobrake provides middleware out of
the box and you may find our example apps more helpful:

* [Gin](examples/gin)
* [Fiber](examples/fiber)
* [Beego](examples/beego)
* [Buffalo](examples/buffalo)
* [Echo](examples/echo)
* [fasthttp](examples/fasthttp)
* [Fiber](examples/fiber)
* [Gin](examples/gin)
* [gorilla/mux](examples/gorilla)
* [Iris](examples/iris)
* [Negroni](examples/negroni)
* [net/http](examples/http)

## Additional notes

Expand All @@ -132,7 +139,7 @@ original glog's functionality and adds the ability to send errors/logs to

## Supported Go versions

The library supports Go v1.15+. The CI file would be the best source of truth
The library supports Go v1.16+. The CI file would be the best source of truth
because it contains all Go versions that we test against.

## Contact
Expand All @@ -154,9 +161,15 @@ The project uses the MIT License. See [LICENSE.md](https://github.com/airbrake/g
[docs]: https://pkg.go.dev/github.com/airbrake/gobrake/v5
[docs/performance]: https://docs.airbrake.io/docs/overview/apm/#monitoring-go-apps
[beego]: https://github.com/beego/beego
[buffalo]: https://github.com/gobuffalo/buffalo
[echo]: https://github.com/labstack/echo
[fasthttp]: https://github.com/valyala/fasthttp
[fiber]: https://github.com/gofiber/fiber
[gin]: https://github.com/gin-gonic/gin
[gorilla]: https://github.com/gorilla/mux
[iris]: https://github.com/kataras/iris
[negroni]: https://github.com/urfave/negroni
[fiber]: https://github.com/gofiber/fiber
[nethttp]: https://pkg.go.dev/net/http
[semver2]: http://semver.org/spec/v2.0.0.html
[go-mod]: https://github.com/golang/go/wiki/Modules
[project-idkey]: https://s3.amazonaws.com/airbrake-github-assets/gobrake/project-id-key.png
Expand Down
2 changes: 1 addition & 1 deletion notifier.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import (
)

const notifierName = "gobrake"
const notifierVersion = "5.3.0"
const notifierVersion = "5.4.0"
const userAgent = notifierName + "/" + notifierVersion

const waitTimeout = 5 * time.Second
Expand Down

0 comments on commit 9ad6424

Please sign in to comment.