version bump

This commit is contained in:
Sönke Hahn 2016-04-01 21:19:05 +08:00
parent 1fe37d5170
commit 14a8139cbe
11 changed files with 28 additions and 28 deletions

View file

@ -1,5 +1,5 @@
name: tutorial name: tutorial
version: 0.5 version: 0.6
synopsis: The servant tutorial synopsis: The servant tutorial
homepage: http://haskell-servant.github.io/ homepage: http://haskell-servant.github.io/
license: BSD3 license: BSD3
@ -25,11 +25,11 @@ library
, directory , directory
, blaze-markup , blaze-markup
, containers , containers
, servant == 0.5.* , servant == 0.6.*
, servant-server == 0.5.* , servant-server == 0.6.*
, servant-client == 0.5.* , servant-client == 0.6.*
, servant-docs == 0.5.* , servant-docs == 0.6.*
, servant-js == 0.5.* , servant-js == 0.6.*
, warp , warp
, http-media , http-media
, lucid , lucid

View file

@ -2,7 +2,7 @@
-- documentation, see http://haskell.org/cabal/users-guide/ -- documentation, see http://haskell.org/cabal/users-guide/
name: servant-blaze name: servant-blaze
version: 0.5 version: 0.6
synopsis: Blaze-html support for servant synopsis: Blaze-html support for servant
-- description: -- description:
homepage: http://haskell-servant.github.io/ homepage: http://haskell-servant.github.io/
@ -25,7 +25,7 @@ library
-- other-modules: -- other-modules:
-- other-extensions: -- other-extensions:
build-depends: base >=4.7 && <5 build-depends: base >=4.7 && <5
, servant == 0.5.* , servant == 0.6.*
, http-media , http-media
, blaze-html , blaze-html
hs-source-dirs: src hs-source-dirs: src

View file

@ -2,7 +2,7 @@
-- documentation, see http://haskell.org/cabal/users-guide/ -- documentation, see http://haskell.org/cabal/users-guide/
name: servant-cassava name: servant-cassava
version: 0.5 version: 0.6
synopsis: Servant CSV content-type for cassava synopsis: Servant CSV content-type for cassava
-- description: -- description:
homepage: http://haskell-servant.github.io/ homepage: http://haskell-servant.github.io/
@ -22,7 +22,7 @@ library
-- other-extensions: -- other-extensions:
build-depends: base >=4.6 && <5 build-depends: base >=4.6 && <5
, cassava >0.4 && <0.5 , cassava >0.4 && <0.5
, servant ==0.5.* , servant == 0.6.*
, http-media , http-media
, vector , vector
hs-source-dirs: src hs-source-dirs: src

View file

@ -1,5 +1,5 @@
name: servant-client name: servant-client
version: 0.5 version: 0.6
synopsis: automatical derivation of querying functions for servant webservices synopsis: automatical derivation of querying functions for servant webservices
description: description:
This library lets you derive automatically Haskell functions that This library lets you derive automatically Haskell functions that
@ -45,7 +45,7 @@ library
, http-types , http-types
, network-uri >= 2.6 , network-uri >= 2.6
, safe , safe
, servant == 0.5.* , servant == 0.6.*
, string-conversions , string-conversions
, text , text
, transformers , transformers
@ -79,9 +79,9 @@ test-suite spec
, HUnit , HUnit
, network >= 2.6 , network >= 2.6
, QuickCheck >= 2.7 , QuickCheck >= 2.7
, servant == 0.5.* , servant == 0.6.*
, servant-client , servant-client
, servant-server == 0.5.* , servant-server == 0.6.*
, text , text
, wai , wai
, warp , warp

View file

@ -1,5 +1,5 @@
name: servant-docs name: servant-docs
version: 0.5 version: 0.6
synopsis: generate API docs for your servant webservice synopsis: generate API docs for your servant webservice
description: description:
Library for generating API docs from a servant API definition. Library for generating API docs from a servant API definition.
@ -42,7 +42,7 @@ library
, http-media >= 0.6 , http-media >= 0.6
, http-types >= 0.7 , http-types >= 0.7
, lens , lens
, servant == 0.5.* , servant == 0.6.*
, string-conversions , string-conversions
, text , text
, unordered-containers , unordered-containers

View file

@ -1,5 +1,5 @@
name: servant-foreign name: servant-foreign
version: 0.5 version: 0.6
synopsis: Helpers for generating clients for servant APIs in any programming language synopsis: Helpers for generating clients for servant APIs in any programming language
description: description:
Helper types and functions for generating client functions for servant APIs in any programming language Helper types and functions for generating client functions for servant APIs in any programming language
@ -31,7 +31,7 @@ library
, Servant.Foreign.Inflections , Servant.Foreign.Inflections
build-depends: base == 4.* build-depends: base == 4.*
, lens == 4.* , lens == 4.*
, servant == 0.5.* , servant == 0.6.*
, text >= 1.2 && < 1.3 , text >= 1.2 && < 1.3
, http-types , http-types
hs-source-dirs: src hs-source-dirs: src

View file

@ -1,5 +1,5 @@
name: servant-js name: servant-js
version: 0.5 version: 0.6
synopsis: Automatically derive javascript functions to query servant webservices. synopsis: Automatically derive javascript functions to query servant webservices.
description: description:
Automatically derive javascript functions to query servant webservices. Automatically derive javascript functions to query servant webservices.
@ -45,7 +45,7 @@ library
, base-compat >= 0.9 , base-compat >= 0.9
, charset >= 0.3 , charset >= 0.3
, lens >= 4 , lens >= 4
, servant-foreign == 0.5.* , servant-foreign == 0.6.*
, text >= 1.2 && < 1.3 , text >= 1.2 && < 1.3
hs-source-dirs: src hs-source-dirs: src
@ -67,8 +67,8 @@ executable counter
, aeson >= 0.7 && < 0.12 , aeson >= 0.7 && < 0.12
, filepath >= 1 , filepath >= 1
, lens >= 4 , lens >= 4
, servant == 0.5.* , servant == 0.6.*
, servant-server == 0.5.* , servant-server == 0.6.*
, servant-js , servant-js
, stm , stm
, transformers , transformers

View file

@ -2,7 +2,7 @@
-- documentation, see http://haskell.org/cabal/users-guide/ -- documentation, see http://haskell.org/cabal/users-guide/
name: servant-lucid name: servant-lucid
version: 0.5 version: 0.6
synopsis: Servant support for lucid synopsis: Servant support for lucid
-- description: -- description:
homepage: http://haskell-servant.github.io/ homepage: http://haskell-servant.github.io/
@ -27,7 +27,7 @@ library
build-depends: base >=4.7 && <5 build-depends: base >=4.7 && <5
, http-media , http-media
, lucid , lucid
, servant == 0.5.* , servant == 0.6.*
hs-source-dirs: src hs-source-dirs: src
default-language: Haskell2010 default-language: Haskell2010
include-dirs: include include-dirs: include

View file

@ -1,5 +1,5 @@
name: servant-mock name: servant-mock
version: 0.5 version: 0.6
synopsis: Derive a mock server for free from your servant API types synopsis: Derive a mock server for free from your servant API types
description: description:
Derive a mock server for free from your servant API types Derive a mock server for free from your servant API types

View file

@ -1,5 +1,5 @@
name: servant-server name: servant-server
version: 0.5 version: 0.6
synopsis: A family of combinators for defining webservices APIs and serving them synopsis: A family of combinators for defining webservices APIs and serving them
description: description:
A family of combinators for defining webservices APIs and serving them A family of combinators for defining webservices APIs and serving them
@ -60,7 +60,7 @@ library
, mmorph >= 1 , mmorph >= 1
, network >= 2.6 && < 2.7 , network >= 2.6 && < 2.7
, safe >= 0.3 && < 0.4 , safe >= 0.3 && < 0.4
, servant == 0.5.* , servant == 0.6.*
, split >= 0.2 && < 0.3 , split >= 0.2 && < 0.3
, string-conversions >= 0.3 && < 0.5 , string-conversions >= 0.3 && < 0.5
, system-filepath >= 0.4 && < 0.5 , system-filepath >= 0.4 && < 0.5

View file

@ -1,5 +1,5 @@
name: servant name: servant
version: 0.5 version: 0.6
synopsis: A family of combinators for defining webservices APIs synopsis: A family of combinators for defining webservices APIs
description: description:
A family of combinators for defining webservices APIs and serving them A family of combinators for defining webservices APIs and serving them