Skip to content

Commit

Permalink
Release 0.9.15.
Browse files Browse the repository at this point in the history
  • Loading branch information
lfittl committed Oct 2, 2017
1 parent d53b9bf commit 3b241cb
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
3 changes: 1 addition & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,13 @@ language: go
sudo: required
go:
- 1.9
script: make OUTFILE=pganalyze-collector-linux-amd64
before_install:
- wget https://github.com/google/protobuf/releases/download/v3.2.0/protoc-3.2.0-linux-x86_64.zip
- unzip protoc-3.2.0-linux-x86_64.zip -d $HOME
- export PATH=$HOME/protoc-3.2.0-linux-x86_64/bin:$PATH
- go get -u github.com/golang/protobuf/{proto,protoc-gen-go}
script:
- make build
- make build OUTFILE=pganalyze-collector-linux-amd64
- make test
- make integration_test
deploy:
Expand Down
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## 0.9.15 UNRELEASED
## 0.9.15 2017-10-01

* Update pg_query_go / libpg_query to 9.5-1.6.2
* Updates the query fingerprinting logic to avoid seeing different
Expand All @@ -18,6 +18,7 @@
(just pass that term instead of a path to db_sslrootcert)
* Support for Postgres 10
* Heroku: Support specifying configuration name in log drain endpoints
* RDS: Ensure to delete temporary log files quickly after they are submitted


## 0.9.14 2017-06-06
Expand Down
4 changes: 2 additions & 2 deletions packages/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export NAME=pganalyze-collector
export VERSION=0.9.14
export GIT_VERSION=v0.9.14
export VERSION=0.9.15
export GIT_VERSION=v0.9.15
#export GIT_VERSION=HEAD
#export GIT_VERSION=618e85ce5ed5365bc7d9d9da866fdeb73bac5a55
#export VERSION=$(shell git show -s --format=%ct.%h HEAD)
Expand Down
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.14"
const CollectorVersion = "0.9.15"
const CollectorNameAndVersion = "pganalyze-collector " + CollectorVersion

0 comments on commit 3b241cb

Please sign in to comment.