Skip to content

Commit

Permalink
Bump rest-core, update deps and add CHANGELOGs.
Browse files Browse the repository at this point in the history
  • Loading branch information
hesselink committed May 2, 2016
1 parent 1e04646 commit 84c78bc
Show file tree
Hide file tree
Showing 12 changed files with 40 additions and 13 deletions.
7 changes: 7 additions & 0 deletions rest-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## 0.39

* Add support for versionless APIs, thanks to Tenor Biel. This is a
breaking change. Old API users will have to add `Versioned` before
their list of api versions, so it becomes `Versioned [ (mkVersion
...) ]`.

## 0.38

* Add `RawJsonO`, `RawJsonI`, `RawJsonAndXmlI`, and `RawJsonAndXmlO`.
Expand Down
2 changes: 1 addition & 1 deletion rest-core/rest-core.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: rest-core
version: 0.38
version: 0.39
description: Rest API library.
synopsis: Rest API library.
maintainer: code@silk.co
Expand Down
4 changes: 4 additions & 0 deletions rest-example/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

#### 0.2.0.4

* Allow rest-core-0.39.

#### 0.2.0.3

* Update lots of dependencies.
Expand Down
6 changes: 3 additions & 3 deletions rest-example/rest-example.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: rest-example
version: 0.2.0.3
version: 0.2.0.4
synopsis: Example project for rest
homepage: http://www.github.com/silkapp/rest
license: BSD3
Expand Down Expand Up @@ -50,7 +50,7 @@ library
, json-schema >= 0.6 && < 0.8
, mtl >= 2.0 && < 2.3
, generic-xmlpickler >= 0.1.0.1 && < 0.2
, rest-core >= 0.38 && < 0.39
, rest-core >= 0.39 && < 0.40
, safe >= 0.2 && < 0.4
, transformers >= 0.2 && < 0.6
, transformers-compat >= 0.4 && < 0.6
Expand Down Expand Up @@ -127,7 +127,7 @@ executable rest-example-snap
base >= 4.6 && < 4.9
, base-compat >= 0.8 && < 0.10
, mtl >= 2.0 && < 2.3
, rest-core >= 0.38 && < 0.39
, rest-core >= 0.39 && < 0.40
, rest-example
, rest-snap >= 0.1 && < 0.3
, snap-core == 0.9.*
Expand Down
4 changes: 4 additions & 0 deletions rest-gen/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

#### 0.19.0.3

* Allow rest-core-0.39.

#### 0.19.0.2

* Upgrade to `rest-core 0.38` to add support for `RawJson(AndXml)(I/O)`.
Expand Down
6 changes: 3 additions & 3 deletions rest-gen/rest-gen.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: rest-gen
version: 0.19.0.2
version: 0.19.0.3
description: Documentation and client generation from rest definition.
synopsis: Documentation and client generation from rest definition.
maintainer: code@silk.co
Expand Down Expand Up @@ -64,7 +64,7 @@ library
, json-schema >= 0.6 && < 0.8
, pretty >= 1.0 && < 1.2
, process >= 1.0 && < 1.5
, rest-core >= 0.38 && < 0.39
, rest-core >= 0.38 && < 0.40
, safe >= 0.2 && < 0.4
, semigroups >= 0.5 && < 0.19
, scientific >= 0.3.2 && < 0.4
Expand All @@ -86,7 +86,7 @@ test-suite rest-gen-tests
, HUnit >= 1.2 && < 1.4
, fclabels >= 1.0.4 && < 2.1
, haskell-src-exts >= 1.15.0 && < 1.18
, rest-core >= 0.38 && < 0.39
, rest-core >= 0.38 && < 0.40
, rest-gen
, test-framework == 0.8.*
, test-framework-hunit == 0.3.*
4 changes: 4 additions & 0 deletions rest-happstack/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

#### 0.3.1.1

* Allow rest-core-0.39.

### 0.3.1

* Generalize type of `apiToHandler` to allow transformer stacks on top
Expand Down
4 changes: 2 additions & 2 deletions rest-happstack/rest-happstack.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: rest-happstack
version: 0.3.1
version: 0.3.1.1
description: Rest driver for Happstack.
synopsis: Rest driver for Happstack.
maintainer: code@silk.co
Expand Down Expand Up @@ -28,6 +28,6 @@ library
, containers >= 0.4 && < 0.6
, happstack-server >= 7.0.5 && < 7.5
, mtl >= 2.0 && < 2.3
, rest-core >= 0.34 && < 0.39
, rest-core >= 0.34 && < 0.40
, rest-gen >= 0.14 && < 0.20
, utf8-string >= 0.3 && < 1.1
4 changes: 4 additions & 0 deletions rest-snap/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

#### 0.2.0.1

* Allow rest-core-0.39.

## 0.2

* Breaking: `Applicative` and `Monad` constraint on `m` in
Expand Down
4 changes: 2 additions & 2 deletions rest-snap/rest-snap.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: rest-snap
version: 0.2
version: 0.2.0.1
description: Rest driver for Snap.
synopsis: Rest driver for Snap.
maintainer: code@silk.co
Expand All @@ -26,7 +26,7 @@ library
, base-compat >= 0.8 && < 0.10
, bytestring >= 0.9 && < 0.11
, case-insensitive >= 0.4 && < 1.3
, rest-core >= 0.34 && < 0.39
, rest-core >= 0.34 && < 0.40
, safe >= 0.2 && < 0.4
, snap-core == 0.9.*
, unordered-containers == 0.2.*
Expand Down
4 changes: 4 additions & 0 deletions rest-wai/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

#### 0.2.0.1

* Allow rest-core-0.39.

## 0.2

* Breaking: `Applicative` and `Monad` constraint on `m` in
Expand Down
4 changes: 2 additions & 2 deletions rest-wai/rest-wai.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: rest-wai
version: 0.2
version: 0.2.0.1
description: Rest driver for WAI applications.
synopsis: Rest driver for WAI applications.
maintainer: code@silk.co
Expand Down Expand Up @@ -30,7 +30,7 @@ library
, http-types >= 0.8 && < 0.10
, mime-types == 0.1.*
, mtl >= 2.0 && < 2.3
, rest-core >= 0.35 && < 0.39
, rest-core >= 0.35 && < 0.40
, text >= 0.11 && < 1.3
, unordered-containers == 0.2.*
, wai >= 2.1 && < 3.3

0 comments on commit 84c78bc

Please sign in to comment.