diff --git a/CHANGELOG.md b/CHANGELOG.md index 4f88268d9..8c1d95271 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## Unreleased +### Fixed + +## [0.4.2.0] - 2017-06-11 + ### Added - #742, Add connection retrying on startup and SIGHUP - @steve-chavez diff --git a/app.json b/app.json index 6b4faf366..2aa2f58a4 100644 --- a/app.json +++ b/app.json @@ -10,7 +10,7 @@ }, "POSTGREST_VER": { "description": "Version of PostgREST to deploy", - "value": "0.4.1.0" + "value": "0.4.2.0" }, "DB_URI": { "description": "Database connection string", diff --git a/docker/Dockerfile b/docker/Dockerfile index 4e3fd8bcb..dd52c8a6b 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -7,7 +7,7 @@ RUN apt-get -qq update && \ rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* # Install postgrest -RUN POSTGREST_VERSION="0.4.1.0" \ +RUN POSTGREST_VERSION="0.4.2.0" \ BUILD_DEPS="curl ca-certificates xz-utils" && \ apt-get -qq update && \ apt-get -qq install -y --no-install-recommends $BUILD_DEPS && \ diff --git a/postgrest.cabal b/postgrest.cabal index d1553045b..127d354b1 100644 --- a/postgrest.cabal +++ b/postgrest.cabal @@ -2,7 +2,7 @@ name: postgrest description: Reads the schema of a PostgreSQL database and creates RESTful routes for the tables and views, supporting all HTTP verbs that security permits. -version: 0.4.1.0 +version: 0.4.2.0 synopsis: REST API for any Postgres database license: MIT license-file: LICENSE