Skip to content

Commit

Permalink
UPdated changelog, notifier version and readme.
Browse files Browse the repository at this point in the history
  • Loading branch information
chimanjain committed Feb 7, 2022
1 parent f07c720 commit 161d308
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

## master

## [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))

## [v5.2.0][v5.2.0] (December 13, 2021)

* Deprecated `NewMiddleware` func and replaced with `New` func in gin middleware ([#224](https://github.com/airbrake/gobrake/pull/224))
Expand Down Expand Up @@ -118,3 +123,4 @@ Features:
[v5.1.0]: https://github.com/airbrake/gobrake/releases/tag/v5.1.0
[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
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

## Introduction

_Gobrake_ is the official notifier library for [Airbrake][airbrake.io] for the
_Gobrake_ is the official notifier package for [Airbrake][airbrake.io] for the
Go programming language. Gobrake provides a minimalist API that enables the
ability to send _any_ Go error or panic to the Airbrake dashboard. The library
is extremely lightweight, with minimal overhead.
Expand All @@ -33,7 +33,7 @@ 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] and [Negroni][negroni]
* Integrations with [Beego][beego], [Gin][gin] and [Negroni][negroni], [Fiber][fiber]
* Last but not least, we follow [semantic versioning 2.0.0][semver2]

## Installation
Expand Down Expand Up @@ -266,8 +266,8 @@ In order to collect routes stats you can instrument your application
using `notifier.Routes.Notify` API.

Below is an example using the net/http middleware. We also have HTTP middleware
examples for [Gin](examples/gin), [Beego](examples/beego) and
[Negroni](examples/negroni).
examples for [Gin](examples/gin), [Beego](examples/beego),
[Negroni](examples/negroni) and [Fiber](examples/fiber).

```go
package main
Expand Down Expand Up @@ -425,9 +425,10 @@ The project uses the MIT License. See [LICENSE.md](https://github.com/airbrake/g
[gobrake-github]: https://github.com/airbrake/gobrake
[docs]: https://pkg.go.dev/github.com/airbrake/gobrake/v5
[docs/performance]: https://docs.airbrake.io/docs/overview/apm/#monitoring-go-apps
[beego]: https://beego.me
[beego]: https://github.com/beego/beego
[gin]: https://github.com/gin-gonic/gin
[negroni]: https://github.com/urfave/negroni
[fiber]: https://github.com/gofiber/fiber
[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.2.0"
const notifierVersion = "5.3.0"
const userAgent = notifierName + "/" + notifierVersion

const waitTimeout = 5 * time.Second
Expand Down

0 comments on commit 161d308

Please sign in to comment.