diff --git a/CHANGELOG.md b/CHANGELOG.md index 8badef4d0..c1b9a31b8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,7 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). -## Unreleased +## [0.2.12.0] - 2015-10-25 ### Added - Embed associations, e.g. `/film?select=*,director(*)` - @ruslantalpa @@ -12,6 +12,7 @@ This project adheres to [Semantic Versioning](http://semver.org/). ### Fixed - Tolerate a missing role in user creation - @calebmer +- Avoid unnecessary text re-encoding - @ruslantalpa ## [0.2.11.1] - 2015-09-01 diff --git a/app.json b/app.json index 0e3a4c8ec..fb4e2305b 100644 --- a/app.json +++ b/app.json @@ -10,7 +10,7 @@ }, "POSTGREST_VER": { "description": "Version of PostgREST to deploy", - "value": "0.2.11.1" + "value": "0.2.12.0" }, "DB_NAME": { "description": "Database name", diff --git a/docs/install/server.md b/docs/install/server.md index 0aa876a29..0ac40bc29 100644 --- a/docs/install/server.md +++ b/docs/install/server.md @@ -7,22 +7,14 @@ The [release page](https://github.com/begriffs/postgrest/releases/latest) has pr ```sh # Untar the release (available at https://github.com/begriffs/postgrest/releases/latest) -$ tar zxf postgrest-0.2.11.1-osx.tar.xz +$ tar zxf postgrest-0.2.12.0-osx.tar.xz # Try running it -$ ./postgrest-0.2.11.1 +$ ./postgrest # You should see a usage help message ``` -
Deprecation Warning
- -The filename inside the tarball currently includes a version - number, but this will be removed in the next version for cleaner - post-extraction scripting.
-Invitation to Contribute
@@ -36,7 +28,7 @@ $ ./postgrest-0.2.11.1 We'll learn the meaning of the command line flags later, but here is a minimal example of running the app. It does all operations as user `postgres`, including for unauthenticated requests. ```sh -$ ./postgrest-0.2.11.1 -d dbname -U postgres --a postgres --v1schema public +$ ./postgrest -d dbname -U postgres --a postgres --v1schema public ``` ### Building from Source diff --git a/postgrest.cabal b/postgrest.cabal index af08f499e..3634453f3 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.2.11.1 +version: 0.2.12.0 synopsis: REST API for any Postgres database license: MIT license-file: LICENSE diff --git a/stack.yaml b/stack.yaml index be8f9f2d6..338b245be 100644 --- a/stack.yaml +++ b/stack.yaml @@ -4,4 +4,4 @@ packages: extra-deps: - Ranged-sets-0.3.0 - packdeps-0.4.1 -resolver: lts-3.7 +resolver: lts-3.10