diff --git a/CHANGELOG.md b/CHANGELOG.md index c06563b6e..cff8a7d02 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## Unreleased +### Added + +### Fixed + +## [0.4.1.0] - 2017-04-25 + ### Added - Allow requesting binary output on GET - @steve-chavez - Accept clients requesting `Content-Type: application/json` from / - @feynmanliang diff --git a/app.json b/app.json index aa799320b..6b4faf366 100644 --- a/app.json +++ b/app.json @@ -10,7 +10,7 @@ }, "POSTGREST_VER": { "description": "Version of PostgREST to deploy", - "value": "0.4.0.0" + "value": "0.4.1.0" }, "DB_URI": { "description": "Database connection string", diff --git a/docker/Dockerfile b/docker/Dockerfile index a71b6d7c8..8e526c890 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,6 +1,6 @@ FROM debian:jessie -ENV POSTGREST_VERSION 0.4.0.0 +ENV POSTGREST_VERSION 0.4.1.0 RUN apt-get update && \ apt-get install -y tar xz-utils wget libpq-dev && \ diff --git a/postgrest.cabal b/postgrest.cabal index 9233df817..0848b93ca 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.0.0 +version: 0.4.1.0 synopsis: REST API for any Postgres database license: MIT license-file: LICENSE