Skip to content

Commit

Permalink
Release 0.40.0 (#187)
Browse files Browse the repository at this point in the history
  • Loading branch information
lfittl authored Jun 30, 2021
1 parent 805036a commit 290466d
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## 0.40.0 2021-06-30

* Update to pg_query_go v2.0.4
- Normalize: Don't touch "GROUP BY 1" and "ORDER BY 1" expressions, keep original text
- Fingerprint: Cache list item hashes to fingerprint complex queries faster
(this change also significantly reduces memory usage for complex queries)
* Install script: Support CentOS in addition to RHEL


## 0.39.0 2021-05-31

* Docker: Use Docker's USER command to set user, to support running as non-root
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.39.0
export GIT_VERSION=v0.39.0
export VERSION=0.40.0
export GIT_VERSION=v0.40.0
#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.39.0"
const CollectorVersion = "0.40.0"
const CollectorNameAndVersion = "pganalyze-collector " + CollectorVersion

0 comments on commit 290466d

Please sign in to comment.