diff --git a/README.md b/README.md index 4e60f42b1..11a637d8f 100644 --- a/README.md +++ b/README.md @@ -168,7 +168,7 @@ With settings above applied, best write-strategy to use is "noop" ## Changelog -##### master (unstable, untested) +##### version 0.8.0 * Fully refactored and optimizer cache module (core of go-carbon) (thanks [Maxim Ivanov](https://github.com/redbaron)) * Added `noop` cache.write-strategy (thanks [Maxim Ivanov](https://github.com/redbaron)) * New optional dump/restore functional for minimize data loss on restart diff --git a/carbon-agent.go b/carbon-agent.go index 9c03faf5e..818747aac 100644 --- a/carbon-agent.go +++ b/carbon-agent.go @@ -22,7 +22,7 @@ import ( import _ "net/http/pprof" // Version of go-carbon -const Version = "0.7.3" +const Version = "0.8.0" func httpServe(addr string) (func(), error) { tcpAddr, err := net.ResolveTCPAddr("tcp", addr) diff --git a/debian/changelog b/debian/changelog index 6eb61de1f..7ce81fb94 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,16 @@ +go-carbon (0.8.0) unstable; urgency=low + * Fully refactored and optimizer cache module (core of go-carbon) (thanks + Maxim Ivanov) + * Added noop cache.write-strategy (thanks Maxim Ivanov) + * New optional dump/restore functional for minimize data loss on restart + * Refactored internal stat mechanics. common.graph-prefix and + common.metric-interval now can be changed without restart (on HUP signal) + * Customizable internal metrics endpoint. common.metric-endpoint param. + Valid values: "local" and "" (write directly to whisper), + "tcp://host:port", "udp://host:port" + + -- Roman Lomonosov Wed, 24 Aug 2016 22:30:00 +0300 + go-carbon (0.7.3) stable; urgency=low * Added cache.write-strategy option (values "max" or "sorted") (thanks Alexander Akulov)