Bump everything to 0.4

This commit is contained in:
Julian K. Arni 2015-05-09 02:28:05 +02:00
parent c8aa53f1a4
commit b81ea9eee2
18 changed files with 46 additions and 46 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.1.0.0 version: 0.4.0.0
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/
@ -21,7 +21,7 @@ library
-- other-modules: -- other-modules:
-- other-extensions: -- other-extensions:
build-depends: base >=4.7 && <5 build-depends: base >=4.7 && <5
, servant , servant == 0.4.*
, http-media , http-media
, blaze-html , blaze-html
hs-source-dirs: src hs-source-dirs: src

View File

@ -1,4 +1,4 @@
0.3 0.4
--- ---
* `Delete` now is like `Get`, `Post`, `Put`, and `Patch` and returns a response body * `Delete` now is like `Get`, `Post`, `Put`, and `Patch` and returns a response body
* Support content-type aware combinators and `Accept`/`Content-type` headers * Support content-type aware combinators and `Accept`/`Content-type` headers

View File

@ -6,7 +6,7 @@
}: }:
mkDerivation { mkDerivation {
pname = "servant-client"; pname = "servant-client";
version = "0.2.2"; version = "0.4.0";
src = ./.; src = ./.;
buildDepends = [ buildDepends = [
aeson attoparsec base bytestring either exceptions http-client aeson attoparsec base bytestring either exceptions http-client

View File

@ -1,5 +1,5 @@
name: servant-client name: servant-client
version: 0.2.2 version: 0.4.0
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
@ -51,7 +51,7 @@ library
, http-types , http-types
, network-uri >= 2.6 , network-uri >= 2.6
, safe , safe
, servant >= 0.2.2 , servant == 0.4.*
, 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.2.1 , servant == 0.4.*
, servant-client , servant-client
, servant-server >= 0.2.1 , servant-server == 0.4.*
, text , text
, wai , wai
, warp , warp

View File

@ -2,7 +2,7 @@
--- ---
* `Delete` now is like `Get`, `Post`, `Put`, and `Patch` and returns a response body * `Delete` now is like `Get`, `Post`, `Put`, and `Patch` and returns a response body
* Allow for extra information to be added to the docs * Allow for extra information to be added to the docs
* Support content-type aware combinators of *servant-0.3* * Support content-type aware combinators of *servant-0.4*
* Render endpoints in a canonical order (https://github.com/haskell-servant/servant-docs/pull/15) * Render endpoints in a canonical order (https://github.com/haskell-servant/servant-docs/pull/15)
* Remove ToJSON superclass from ToSample * Remove ToJSON superclass from ToSample
* Split out Internal module * Split out Internal module

View File

@ -4,7 +4,7 @@
}: }:
mkDerivation { mkDerivation {
pname = "servant-docs"; pname = "servant-docs";
version = "0.3"; version = "0.4";
src = ./.; src = ./.;
isLibrary = true; isLibrary = true;
isExecutable = true; isExecutable = true;

View File

@ -1,5 +1,5 @@
name: servant-docs name: servant-docs
version: 0.3 version: 0.4
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.2.1 , servant == 0.4.*
, string-conversions , string-conversions
, text , text
, unordered-containers , unordered-containers

View File

@ -1,5 +1,5 @@
name: servant-examples name: servant-examples
version: 0.3 version: 0.4
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.
@ -8,7 +8,7 @@ license: BSD3
license-file: LICENSE license-file: LICENSE
author: Alp Mestanogullari author: Alp Mestanogullari
maintainer: alpmestan@gmail.com maintainer: alpmestan@gmail.com
-- copyright: -- copyright:
category: Web category: Web
build-type: Simple build-type: Simple
cabal-version: >=1.10 cabal-version: >=1.10
@ -19,8 +19,8 @@ executable hackage
aeson >= 0.8 aeson >= 0.8
, base >=4.7 , base >=4.7
, either , either
, servant , servant == 0.4.*
, servant-client , servant-client == 0.4.*
, text , text
, transformers , transformers
hs-source-dirs: hackage hs-source-dirs: hackage
@ -48,7 +48,7 @@ executable auth-combinator
, bytestring , bytestring
, http-types , http-types
, servant , servant
, servant-server , servant-server == 0.4.*
, text , text
, wai , wai
, warp , warp

View File

@ -1,4 +1,4 @@
0.3 0.4
--- ---
* `Delete` now is like `Get`, `Post`, `Put`, and `Patch` and returns a response body * `Delete` now is like `Get`, `Post`, `Put`, and `Patch` and returns a response body
* Extend `HeaderArg` to support more advanced HTTP header handling (https://github.com/haskell-servant/servant-jquery/pull/6) * Extend `HeaderArg` to support more advanced HTTP header handling (https://github.com/haskell-servant/servant-jquery/pull/6)

View File

@ -4,7 +4,7 @@
}: }:
mkDerivation { mkDerivation {
pname = "servant-jquery"; pname = "servant-jquery";
version = "0.2.2"; version = "0.4.0";
src = ./.; src = ./.;
isLibrary = true; isLibrary = true;
isExecutable = true; isExecutable = true;

View File

@ -1,5 +1,5 @@
name: servant-jquery name: servant-jquery
version: 0.2.2 version: 0.4.0
synopsis: Automatically derive (jquery) javascript functions to query servant webservices synopsis: Automatically derive (jquery) 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.
@ -37,7 +37,7 @@ library
build-depends: base >=4.5 && <5 build-depends: base >=4.5 && <5
, charset , charset
, lens >= 4 , lens >= 4
, servant >= 0.2.2 , servant == 0.4.*
, text , text
hs-source-dirs: src hs-source-dirs: src
default-language: Haskell2010 default-language: Haskell2010
@ -57,9 +57,9 @@ executable counter
aeson aeson
, base , base
, filepath , filepath
, servant >= 0.2.2 , servant == 0.4.*
, servant-server >= 0.2.3 , servant-server == 0.4.*
, servant-jquery >= 0.2.2 , servant-jquery == 0.4.*
, 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.1.0.0 version: 0.4.0.0
synopsis: Servant support for lucid synopsis: Servant support for lucid
-- description: -- description:
homepage: http://haskell-servant.github.io/ homepage: http://haskell-servant.github.io/
@ -23,6 +23,6 @@ library
build-depends: base >=4.7 && <5 build-depends: base >=4.7 && <5
, http-media , http-media
, lucid , lucid
, servant , servant == 0.4.*
hs-source-dirs: src hs-source-dirs: src
default-language: Haskell2010 default-language: Haskell2010

View File

@ -1,9 +1,9 @@
0.3 0.4
--- ---
* `Delete` now is like `Get`, `Post`, `Put`, and `Patch` and returns a response body * `Delete` now is like `Get`, `Post`, `Put`, and `Patch` and returns a response body
* Add a `RouteMismatch` constructor for arbitrary HTTP response codes (https://github.com/haskell-servant/servant-server/pull/22) * Add a `RouteMismatch` constructor for arbitrary HTTP response codes (https://github.com/haskell-servant/servant-server/pull/22)
* Add support for the `Patch` combinator * Add support for the `Patch` combinator
* Support for `Accept`/`Content-type` headers and for the content-type aware combinators in *servant-0.3* * Support for `Accept`/`Content-type` headers and for the content-type aware combinators in *servant-0.4*
* Export `toApplication` from `Servant.Server` (https://github.com/haskell-servant/servant-server/pull/29) * Export `toApplication` from `Servant.Server` (https://github.com/haskell-servant/servant-server/pull/29)
* Support other Monads than just `EitherT (Int, String) IO` (https://github.com/haskell-servant/servant-server/pull/21) * Support other Monads than just `EitherT (Int, String) IO` (https://github.com/haskell-servant/servant-server/pull/21)
* Make methods return status code 204 if they return () (https://github.com/haskell-servant/servant-server/issues/28) * Make methods return status code 204 if they return () (https://github.com/haskell-servant/servant-server/issues/28)

View File

@ -1,26 +1,26 @@
{ mkDerivation, aeson, attoparsec, base, bytestring { mkDerivation, aeson, attoparsec, base, bytestring
, bytestring-conversion, directory, either, exceptions, hspec , bytestring-conversion, directory, doctest, either, exceptions
, hspec-wai, http-types, network, network-uri, parsec, QuickCheck , filemanip, hspec, hspec-wai, http-types, mmorph, mtl, network
, safe, servant, split, stdenv, string-conversions, system-filepath , network-uri, parsec, QuickCheck, safe, servant, split, stdenv
, temporary, text, transformers, wai, wai-app-static, wai-extra , string-conversions, system-filepath, temporary, text
, warp , transformers, wai, wai-app-static, wai-extra, warp
}: }:
mkDerivation { mkDerivation {
pname = "servant-server"; pname = "servant-server";
version = "0.2.4"; version = "0.4.0";
src = ./.; src = ./.;
isLibrary = true; isLibrary = true;
isExecutable = true; isExecutable = true;
buildDepends = [ buildDepends = [
aeson attoparsec base bytestring either http-types network-uri safe aeson attoparsec base bytestring either http-types mmorph mtl
servant split string-conversions system-filepath text transformers network-uri safe servant split string-conversions system-filepath
wai wai-app-static warp text transformers wai wai-app-static warp
]; ];
testDepends = [ testDepends = [
aeson base bytestring bytestring-conversion directory either aeson base bytestring bytestring-conversion directory doctest
exceptions hspec hspec-wai http-types network parsec QuickCheck either exceptions filemanip hspec hspec-wai http-types mtl network
servant string-conversions temporary text transformers wai parsec QuickCheck servant string-conversions temporary text
wai-extra warp transformers wai wai-extra warp
]; ];
homepage = "http://haskell-servant.github.io/"; homepage = "http://haskell-servant.github.io/";
description = "A family of combinators for defining webservices APIs and serving them"; description = "A family of combinators for defining webservices APIs and serving them";

View File

@ -1,5 +1,5 @@
name: servant-server name: servant-server
version: 0.2.4 version: 0.4.0
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
@ -50,7 +50,7 @@ library
, mtl >= 2 && < 3 , mtl >= 2 && < 3
, mmorph >= 1 , mmorph >= 1
, safe >= 0.3 && < 0.4 , safe >= 0.3 && < 0.4
, servant >= 0.2 && < 0.4 , servant == 0.4.*
, split >= 0.2 && < 0.3 , split >= 0.2 && < 0.3
, string-conversions >= 0.3 && < 0.4 , string-conversions >= 0.3 && < 0.4
, system-filepath >= 0.4 && < 0.5 , system-filepath >= 0.4 && < 0.5

View File

@ -1,4 +1,4 @@
0.3 0.4
--- ---
* `Delete` now is like `Get`, `Post`, `Put`, and `Patch` and returns a response body * `Delete` now is like `Get`, `Post`, `Put`, and `Patch` and returns a response body
* Multiple content-type/accept support for all the relevant combinators * Multiple content-type/accept support for all the relevant combinators

View File

@ -5,7 +5,7 @@
}: }:
mkDerivation { mkDerivation {
pname = "servant"; pname = "servant";
version = "0.2.2"; version = "0.4.0";
src = ./.; src = ./.;
buildDepends = [ buildDepends = [
aeson attoparsec base bytestring bytestring-conversion aeson attoparsec base bytestring bytestring-conversion

View File

@ -1,5 +1,5 @@
name: servant name: servant
version: 0.2.2 version: 0.4.0
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