From 4e04f511181eba0f8e91a98354b23988c91bfa28 Mon Sep 17 00:00:00 2001 From: Adam Bergmark Date: Thu, 23 Oct 2014 17:49:50 +0200 Subject: [PATCH] bump --- rest-core/CHANGELOG.md | 4 ++++ rest-core/rest-core.cabal | 4 ++-- rest-gen/CHANGELOG.md | 4 ++++ rest-gen/rest-gen.cabal | 2 +- rest-types/CHANGELOG.md | 6 +++++- rest-types/rest-types.cabal | 2 +- 6 files changed, 17 insertions(+), 5 deletions(-) diff --git a/rest-core/CHANGELOG.md b/rest-core/CHANGELOG.md index ff93985..5417870 100644 --- a/rest-core/CHANGELOG.md +++ b/rest-core/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +### 0.33.1 + +* Move `Range` from `Rest.Handler` into `rest-types`. Still re-exported. + ## 0.33 * Added a `Rest.Types.Error.ToResponseCode` constraint to `jsonE`, `xmlE`, and `xmlJsonE`. diff --git a/rest-core/rest-core.cabal b/rest-core/rest-core.cabal index 9cbcd5d..2871f79 100644 --- a/rest-core/rest-core.cabal +++ b/rest-core/rest-core.cabal @@ -1,5 +1,5 @@ name: rest-core -version: 0.33 +version: 0.33.1 description: Rest API library. synopsis: Rest API library. maintainer: code@silk.co @@ -53,7 +53,7 @@ library , multipart >= 0.1.1 && < 0.2 , random >= 1.0 && < 1.2 , rest-stringmap == 0.2.* - , rest-types == 1.11.* + , rest-types >= 1.11.1 && < 1.12 , safe >= 0.2 && < 0.4 , split >= 0.1 && < 0.3 , text >= 0.11 && < 1.3 diff --git a/rest-gen/CHANGELOG.md b/rest-gen/CHANGELOG.md index 4a45431..3dd92f0 100644 --- a/rest-gen/CHANGELOG.md +++ b/rest-gen/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +#### 0.16.0.4 + +* JavaScript: Minor simplification in the template. + #### 0.16.0.3 * JavaScript/node.js: Each instance of a client now uses its own cookie jar automatically. You no longer need to depend on the `request` library to use generated clients. If you want access to the cookie jar use `api.cookieJar`. diff --git a/rest-gen/rest-gen.cabal b/rest-gen/rest-gen.cabal index 3f1b72d..2a2323b 100644 --- a/rest-gen/rest-gen.cabal +++ b/rest-gen/rest-gen.cabal @@ -1,5 +1,5 @@ name: rest-gen -version: 0.16.0.3 +version: 0.16.0.4 description: Documentation and client generation from rest definition. synopsis: Documentation and client generation from rest definition. maintainer: code@silk.co diff --git a/rest-types/CHANGELOG.md b/rest-types/CHANGELOG.md index e48a8c3..c98be2a 100644 --- a/rest-types/CHANGELOG.md +++ b/rest-types/CHANGELOG.md @@ -1,6 +1,10 @@ # Changelog -### 1.11 +### 1.11.1 + +* Moved `Range` from `rest-core` to `Rest.Types.Range`. + +## 1.11 * Added `Rest.Types.Error.ToResponseCode` for getting the response codes of errors. * Removed `responseCode` from `Rest.Types.Error.DomainReason`, use `toResponseCode` instead. diff --git a/rest-types/rest-types.cabal b/rest-types/rest-types.cabal index 37b136f..2e65c4e 100644 --- a/rest-types/rest-types.cabal +++ b/rest-types/rest-types.cabal @@ -1,5 +1,5 @@ name: rest-types -version: 1.11 +version: 1.11.1 description: Silk Rest Framework Types synopsis: Silk Rest Framework Types maintainer: code@silk.co