Skip to content

Commit 4bbf053

Browse files
committed
Bump version
1 parent da79f1d commit 4bbf053

File tree

4 files changed

+5
-7
lines changed

4 files changed

+5
-7
lines changed

CHANGELOG.md

+1-4
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,15 @@
33
All notable changes to this project will be documented in this file.
44
This project adheres to [Semantic Versioning](http://semver.org/).
55

6-
## unreleased
7-
6+
## [0.2.9.0] - 2015-05-20
87
### Added
9-
108
- Return range headers in PATCH
119
- Return PATCHed resources if header "Prefer: return=representation"
1210
- Allow nested objects and arrays in JSON post for jsonb columns
1311
- JSON Web Tokens - [Federico Rampazzo](https://github.com/framp)
1412
- Expose PostgREST as a Haskell package
1513

1614
### Fixed
17-
1815
- Return 404 if no records updated by PATCH
1916

2017
## [0.2.8.0] - 2015-04-17

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ your own projects.
2020

2121
### Usage
2222

23-
Download the binary ([OS X](http://bin.begriffs.com/dbapi/osx/postgrest-0.2.8.0.tar.xz) / [Linux](http://bin.begriffs.com/dbapi/heroku/postgrest-0.2.8.0.tar.xz)) and invoke like so:
23+
Download the binary ([OS X](http://bin.begriffs.com/dbapi/osx/postgrest-0.2.9.0.tar.xz) / [Linux](http://bin.begriffs.com/dbapi/heroku/postgrest-0.2.9.0.tar.xz)) and invoke like so:
2424

2525
```bash
2626
postgrest --db-host localhost --db-port 5432 \

app.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
},
1111
"POSTGREST_VER": {
1212
"description": "Version of PostgREST to deploy",
13-
"value": "0.2.8.0"
13+
"value": "0.2.9.0"
1414
},
1515
"DB_NAME": {
1616
"description": "Database name",

postgrest.cabal

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: postgrest
22
description: Reads the schema of a PostgreSQL database and creates RESTful routes
33
for the tables and views, supporting all HTTP verbs that security
44
permits.
5-
version: 0.2.8.0
5+
version: 0.2.9.0
66
synopsis: REST API for any Postgres database
77
license: MIT
88
license-file: LICENSE
@@ -16,6 +16,7 @@ cabal-version: >=1.10
1616
executable postgrest
1717
main-is: PostgREST/Main.hs
1818
default-extensions: OverloadedStrings, ScopedTypeVariables, QuasiQuotes
19+
default-language: Haskell2010
1920
build-depends: base >=4.6 && <5
2021
, postgrest
2122
, hasql == 0.7.3.1, hasql-backend == 0.4.1

0 commit comments

Comments
 (0)