Skip to content

Commit

Permalink
Release 0.46.1
Browse files Browse the repository at this point in the history
  • Loading branch information
lfittl committed Oct 22, 2022
1 parent c15706c commit bf892a4
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 5 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.46.1 2022-10-21

* Fix Postgres 15 compatibility due to version check bug
- This fixes an issue with Postgres 15 only that caused the collector to reject
the newer pg_stat_statements version (1.10) by accident
* Add packages for Ubuntu 22.04, RHEL9-based distributions and Fedora 36


## 0.46.0 2022-10-21

* Relation stats: Skip statistics collection on child tables when parent is locked
Expand Down
4 changes: 2 additions & 2 deletions contrib/helm/pganalyze-collector/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v2
name: pganalyze-collector
version: 0.46.0
appVersion: "v0.46.0"
version: 0.46.1
appVersion: "v0.46.1"
type: application
description: pganalyze statistics collector
home: https://pganalyze.com/
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.46.0
export GIT_VERSION=v0.46.0
export VERSION=0.46.1
export GIT_VERSION=v0.46.1
#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.46.0"
const CollectorVersion = "0.46.1"
const CollectorNameAndVersion = "pganalyze-collector " + CollectorVersion

0 comments on commit bf892a4

Please sign in to comment.