Skip to content

Commit

Permalink
Release 0.9.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
lfittl committed Jul 18, 2016
1 parent 695dc5e commit 7b35b69
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 0.9.0 2016-07-14

* First official release of new protocol buffers-based collector


## 0.9.0rc8 2016-07-08

* Significant restructuring of the codebase
Expand Down
5 changes: 5 additions & 0 deletions packages/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
NAME=pganalyze-collector
#VERSION=0.9.0
VERSION=$(shell git show -s --format=%ct.%h HEAD)

RPM_PACKAGE=$(NAME)-$(VERSION)-1.x86_64.rpm
Expand Down Expand Up @@ -56,6 +57,10 @@ ubuntu-trusty: $(DEB_PACKAGE)
docker rmi -f pga-collector-test
echo "Test successful"

push_packages_release: $(RPM_PACKAGE) $(DEB_PACKAGE)
package_cloud push pganalyze/collector/el/6 $(NAME)-$(VERSION)-1.x86_64.rpm
package_cloud push pganalyze/collector/ubuntu/trusty $(NAME)_$(VERSION)_amd64.deb

push_packages_latest: $(RPM_PACKAGE) $(DEB_PACKAGE)
package_cloud push pganalyze/collector-latest/el/6 $(NAME)-$(VERSION)-1.x86_64.rpm
package_cloud push pganalyze/collector-latest/ubuntu/trusty $(NAME)_$(VERSION)_amd64.deb
2 changes: 1 addition & 1 deletion util/version.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package util

const CollectorVersion = "0.9.0rc8"
const CollectorVersion = "0.9.0"
const CollectorNameAndVersion = "pganalyze-collector " + CollectorVersion

0 comments on commit 7b35b69

Please sign in to comment.