Skip to content

Commit

Permalink
Bump version to 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Tyson Tate committed Jun 28, 2014
1 parent d690b9d commit 427aa56
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
14 changes: 14 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
0.1.0 - June 27th, 2014
=======================

Important: this release changes the grouping of errors in Rollbar. Be sure to
test if the grouping of errors in Rollbar is important to your Go projects.

* Errors are now fingerprinted by the full stacktrace (filen ames, method
names, and line numbers). This significantly improves the grouping of errors
in Rollbar. Contributed by @kjk
* File paths now omit unneeded prefixes. Contributed by @kjk
* Add severity constants (`rollbar.CRIT`, etc.)
* Fix `Close()` call on nil responses. Thanks @Soulou!
* Increase default buffer size to 1,000.

0.0.4 - November 25th, 2013
===========================

Expand Down
2 changes: 1 addition & 1 deletion rollbar.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import (

const (
NAME = "go-rollbar"
VERSION = "0.0.4"
VERSION = "0.1.0"

// Severity levels
CRIT = "critical"
Expand Down

0 comments on commit 427aa56

Please sign in to comment.