Skip to content
This repository has been archived by the owner on Aug 4, 2021. It is now read-only.

Commit

Permalink
Fix inconsistent versioning handling
Browse files Browse the repository at this point in the history
The release tag for pg_prometheus was inconsistent with the versioning
in the extension itself. This has been fixed and Docker builds have
been bumped to PostgreSQL 10.3.
  • Loading branch information
erimatnor committed Apr 24, 2018
1 parent c3bf029 commit 4d4ac22
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
FROM postgres:10.2-alpine
FROM postgres:10.3-alpine

MAINTAINER [email protected]

ENV PG_MAJOR 10.2
ENV PG_MAJOR 10.3
ENV TIMESCALEDB_VERSION 0.9.1
ENV PG_PROMETHEUS_VERSION 0.0.1

COPY pg_prometheus.control Makefile /build/pg_prometheus/
COPY src/*.c src/*.h /build/pg_prometheus/src/
Expand Down
2 changes: 1 addition & 1 deletion pg_prometheus.control
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# pg_prometheus extension
comment = 'Prometheus metrics for PostgreSQL'
default_version = '0.0.1'
default_version = '0.2'
module_pathname = '$libdir/pg_prometheus'
relocatable = true

0 comments on commit 4d4ac22

Please sign in to comment.