Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/develop'
Browse files Browse the repository at this point in the history
When updating develop and master branches for v8.3.0 we used squash strategy in
Pull Requests. This caused several merge conflicts as the squashed commit had
different shas. This merge aims to remedy this trivial problem

Conflicts:
	.travis.yml
	CHANGELOG.md
	Dockerfile
	Dockerfile-alpine
	docker-compose.yml
  • Loading branch information
hanefi committed Jul 30, 2019
2 parents c07019f + ccbde27 commit 4402a05
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
sudo: required
services: [ docker ]
script:
- docker build -t citusdata/citus:8.3.0 .
- docker build -t citusdata/citus:8.3.1 .
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### citus-docker v8.3.1.docker (July 29, 2019) ###

* Bump Citus version to 8.3.1

### citus-docker v8.3.0.docker (July 10, 2019) ###

* Bump Citus version to 8.3.0
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM postgres:11.4
ARG VERSION=8.3.0
ARG VERSION=8.3.1
LABEL maintainer="Citus Data https://citusdata.com" \
org.label-schema.name="Citus" \
org.label-schema.description="Scalable PostgreSQL for multi-tenant and real-time workloads" \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile-alpine
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM postgres:11.4-alpine
ARG VERSION=8.3.0
ARG VERSION=8.3.1
LABEL maintainer="Citus Data https://citusdata.com" \
org.label-schema.name="Citus" \
org.label-schema.description="Scalable PostgreSQL for multi-tenant and real-time workloads" \
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ version: '2.1'
services:
master:
container_name: "${COMPOSE_PROJECT_NAME:-citus}_master"
image: 'citusdata/citus:8.3.0'
image: 'citusdata/citus:8.3.1'
ports: ["${MASTER_EXTERNAL_PORT:-5432}:5432"]
labels: ['com.citusdata.role=Master']
worker:
image: 'citusdata/citus:8.3.0'
image: 'citusdata/citus:8.3.1'
labels: ['com.citusdata.role=Worker']
depends_on: { manager: { condition: service_healthy } }
manager:
Expand Down

0 comments on commit 4402a05

Please sign in to comment.