Skip to content

Commit eae62a6

Browse files
author
Jeff McCormick
committed
update version number
1 parent 5fc1904 commit eae62a6

11 files changed

+18
-16
lines changed

Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ all:
4141
make pgo
4242
push:
4343
docker push crunchydata/lspvc:$(CO_IMAGE_TAG)
44+
docker push crunchydata/csvload:$(CO_IMAGE_TAG)
4445
docker push crunchydata/postgres-operator:$(CO_IMAGE_TAG)
4546
release: check-go-vars
4647
rm -rf $(RELTMPDIR) $(RELFILE)

README.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
= PostgreSQL Operator
2-
v1.5.1, {docdate}
2+
v1.5.2, {docdate}
33

44
== Table of Contents
55

centos7/Dockerfile.csvload.centos7

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ LABEL name="crunchydata/csvload" \
55
PostgresVersion="9.6" \
66
PostgresFullVersion="9.6.5" \
77
version="7.3" \
8-
release="1.5.1" \
8+
release="1.5.2" \
99
build-date="2017-09-28" \
1010
url="https://crunchydata.com" \
1111
summary="loads a CSV file into a database" \

centos7/Dockerfile.lspvc.centos7

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM centos:7
22

3-
LABEL Release="1.5.1" Vendor="Crunchy Data Solutions"
3+
LABEL Release="1.5.2" Vendor="Crunchy Data Solutions"
44

55
RUN yum -y update && yum -y clean all
66

centos7/Dockerfile.postgres-operator.centos7

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM centos:7
22

3-
LABEL Release="1.5.1" Vendor="Crunchy Data Solutions"
3+
LABEL Release="1.5.2" Vendor="Crunchy Data Solutions"
44

55
ENV PGVERSION="9.6" PGDG_REPO="pgdg-centos96-9.6-3.noarch.rpm"
66

docs/build.asciidoc

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
= PostgreSQL Operator Build and Setup
2-
v1.5.1, {docdate}
2+
v1.5.2, {docdate}
33

44
== Table of Contents
55

@@ -152,7 +152,7 @@ export GOBIN=$GOPATH/bin
152152
export PATH=$PATH:$GOBIN
153153
export COROOT=$GOPATH/src/github.com/crunchydata/postgres-operator
154154
export CO_BASEOS=centos7
155-
export CO_VERSION=1.5.1
155+
export CO_VERSION=1.5.2
156156
export CO_IMAGE_TAG=$CO_BASEOS-$CO_VERSION
157157
....
158158

@@ -171,16 +171,16 @@ cd postgres-operator
171171
At this point if you want to avoid building the images and binary
172172
from source, you can pull down the Docker images as follows:
173173
....
174-
docker pull crunchydata/lspvc:centos7-1.5.1
175-
docker pull crunchydata/postgres-operator:centos7-1.5.1
174+
docker pull crunchydata/lspvc:centos7-1.5.2
175+
docker pull crunchydata/postgres-operator:centos7-1.5.2
176176
....
177177

178178
Then to get the *pgo* client, go to the Releases page and download the tar ball, uncompress
179179
it into your $HOME directory:
180180
....
181181
cd $HOME
182-
wget https://github.com/CrunchyData/postgres-operator/releases/download/1.5.1/postgres-operator.1.5.1.tar.gz
183-
tar xvzf ./postgres-operator.1.5.1.tar.gz
182+
wget https://github.com/CrunchyData/postgres-operator/releases/download/1.5.2/postgres-operator.1.5.2.tar.gz
183+
tar xvzf ./postgres-operator.1.5.2.tar.gz
184184
....
185185

186186
Lastly, add the *pgo* client into your PATH.

docs/config.asciidoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
= PostgreSQL Operator Configuration
2-
v1.5.1, {docdate}
2+
v1.5.2, {docdate}
33

44

55
This document describes the configuration options
@@ -67,7 +67,7 @@ BACKUP_STORAGE:
6767
PGO:
6868
LSPVC_TEMPLATE: /home/youruserid/.pgo.lspvc-template.json
6969
CSVLOAD_TEMPLATE: /home/youruserid/.pgo.csvload-template.json
70-
CO_IMAGE_TAG: centos7-1.5.1
70+
CO_IMAGE_TAG: centos7-1.5.2
7171
DEBUG: false
7272
....
7373

docs/design.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
= postgres Operator Design
2-
v1.5.1, {docdate}
2+
v1.5.2, {docdate}
33

44
image::crunchy_logo.png?raw=true[]
55

docs/user-guide.asciidoc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
= postgres Operator User Guide
2-
v1.5.1, {docdate}
2+
v1.5.2, {docdate}
33

44
This document is meant for users and demonstrates
55
the basic interface of the *pgo* command line interface.
@@ -441,6 +441,7 @@ pgo label --label=env=research  --selector=project=xray
441441
In this example, we apply a label of *env=research* to any
442442
clusters that have an existing label of *project=xray* applied.
443443

444+
444445
== bash Completion
445446

446447
There is a bash completion file that is included for users to try, this

rhel7/Dockerfile.lspvc.rhel7

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM registry.access.redhat.com/rhel7.3
22

3-
LABEL Release="1.5" Vendor="Crunchy Data Solutions"
3+
LABEL Release="1.5.2" Vendor="Crunchy Data Solutions"
44

55
RUN yum -y update && yum -y clean all
66

0 commit comments

Comments
 (0)