Bump versions to 0.5

This commit is contained in:
Julian K. Arni 2015-07-27 22:26:49 +02:00
parent e24cb9ddf6
commit 1c9d5baa99
9 changed files with 34 additions and 34 deletions

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.4.1 version: 0.5
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.4.* , servant == 0.5.*
, http-media , http-media
, blaze-html , blaze-html
hs-source-dirs: src hs-source-dirs: src

View File

@ -1,5 +1,5 @@
name: servant-client name: servant-client
version: 0.4.1 version: 0.5
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
@ -41,7 +41,7 @@ library
, http-types , http-types
, network-uri >= 2.6 , network-uri >= 2.6
, safe , safe
, servant == 0.4.* , servant == 0.5.*
, string-conversions , string-conversions
, text , text
, transformers , transformers
@ -72,9 +72,9 @@ test-suite spec
, HUnit , HUnit
, network >= 2.6 , network >= 2.6
, QuickCheck >= 2.7 , QuickCheck >= 2.7
, servant == 0.4.* , servant == 0.5.*
, servant-client , servant-client
, servant-server == 0.4.* , servant-server == 0.5.*
, text , text
, wai , wai
, warp , warp

View File

@ -1,5 +1,5 @@
name: servant-docs name: servant-docs
version: 0.4.1 version: 0.5
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.
@ -38,7 +38,7 @@ library
, http-media >= 0.6 , http-media >= 0.6
, http-types >= 0.7 , http-types >= 0.7
, lens , lens
, servant == 0.4.* , servant == 0.5.*
, string-conversions , string-conversions
, text , text
, unordered-containers , unordered-containers

View File

@ -1,5 +1,5 @@
name: servant-examples name: servant-examples
version: 0.4.1 version: 0.5
synopsis: Example programs for servant synopsis: Example programs for servant
description: Example programs for servant, description: Example programs for servant,
showcasing solutions to common needs. showcasing solutions to common needs.
@ -30,11 +30,11 @@ executable tutorial
, js-jquery , js-jquery
, lucid , lucid
, random , random
, servant == 0.4.* , servant == 0.5.*
, servant-docs == 0.4.* , servant-docs == 0.5.*
, servant-js == 0.4.* , servant-js == 0.5.*
, servant-lucid == 0.4.* , servant-lucid == 0.5.*
, servant-server == 0.4.* , servant-server == 0.5.*
, text , text
, time , time
, transformers , transformers
@ -51,9 +51,9 @@ executable t8-main
aeson aeson
, base >= 4.7 && < 5 , base >= 4.7 && < 5
, either , either
, servant == 0.4.* , servant == 0.5.*
, servant-client == 0.4.* , servant-client == 0.5.*
, servant-server == 0.4.* , servant-server == 0.5.*
, wai , wai
executable hackage executable hackage
@ -62,8 +62,8 @@ executable hackage
aeson >= 0.8 aeson >= 0.8
, base >=4.7 && < 5 , base >=4.7 && < 5
, either , either
, servant == 0.4.* , servant == 0.5.*
, servant-client == 0.4.* , servant-client == 0.5.*
, text , text
, transformers , transformers
hs-source-dirs: hackage hs-source-dirs: hackage
@ -74,8 +74,8 @@ executable wai-middleware
build-depends: build-depends:
aeson >= 0.8 aeson >= 0.8
, base >= 4.7 && < 5 , base >= 4.7 && < 5
, servant == 0.4.* , servant == 0.5.*
, servant-server == 0.4.* , servant-server == 0.5.*
, text , text
, wai , wai
, wai-extra , wai-extra
@ -90,8 +90,8 @@ executable auth-combinator
, base >= 4.7 && < 5 , base >= 4.7 && < 5
, bytestring , bytestring
, http-types , http-types
, servant == 0.4.* , servant == 0.5.*
, servant-server == 0.4.* , servant-server == 0.5.*
, text , text
, wai , wai
, warp , warp

View File

@ -1,5 +1,5 @@
name: servant-js name: servant-js
version: 0.4.1 version: 0.5
synopsis: Automatically derive javascript functions to query servant webservices. synopsis: Automatically derive javascript functions to query servant webservices.
description: description:
Automatically derive jquery-based javascript functions to query servant webservices. Automatically derive jquery-based javascript functions to query servant webservices.
@ -42,7 +42,7 @@ library
build-depends: base >=4.5 && <5 build-depends: base >=4.5 && <5
, charset , charset
, lens >= 4 , lens >= 4
, servant == 0.4.* , servant == 0.5.*
, text , text
hs-source-dirs: src hs-source-dirs: src
default-language: Haskell2010 default-language: Haskell2010
@ -62,9 +62,9 @@ executable counter
aeson aeson
, base , base
, filepath , filepath
, servant == 0.4.* , servant == 0.5.*
, servant-server == 0.4.* , servant-server == 0.5.*
, servant-js == 0.4.* , servant-js == 0.5.*
, stm , stm
, transformers , transformers
, warp , warp

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.4.1 version: 0.5
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,6 +27,6 @@ library
build-depends: base >=4.7 && <5 build-depends: base >=4.7 && <5
, http-media , http-media
, lucid , lucid
, servant == 0.4.* , servant == 0.5.*
hs-source-dirs: src hs-source-dirs: src
default-language: Haskell2010 default-language: Haskell2010

View File

@ -1,5 +1,5 @@
name: servant-mock name: servant-mock
version: 0.4 version: 0.5
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.4.1 version: 0.5
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
@ -55,7 +55,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.4.* , servant == 0.5.*
, 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.4.1 version: 0.5
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