Bump versions to 0.16

This commit is contained in:
Oleg Grenrus 2019-02-20 19:05:49 +02:00
parent eb2c4b6e07
commit 58b401558d
14 changed files with 100 additions and 68 deletions

View file

@ -96,6 +96,15 @@ install:
- "echo 'constraints: foundation >=0.0.14' >> cabal.project" - "echo 'constraints: foundation >=0.0.14' >> cabal.project"
- "echo 'constraints: memory <0.14.12 || >0.14.12' >> cabal.project" - "echo 'constraints: memory <0.14.12 || >0.14.12' >> cabal.project"
- "echo 'allow-newer: servant-js:base' >> cabal.project" - "echo 'allow-newer: servant-js:base' >> cabal.project"
- "echo 'allow-newer: servant-pagination:servant' >> cabal.project"
- "echo 'allow-newer: servant-pagination:servant-server' >> cabal.project"
- "echo 'allow-newer: servant-multipart:servant' >> cabal.project"
- "echo 'allow-newer: servant-multipart:servant-server' >> cabal.project"
- "echo 'allow-newer: servant-auth-server:servant' >> cabal.project"
- "echo 'allow-newer: servant-auth-server:servant-server' >> cabal.project"
- "echo 'allow-newer: servant-auth-server:http-api-data' >> cabal.project"
- "echo 'allow-newer: servant-js:servant' >> cabal.project"
- "echo 'allow-newer: servant-js:servant-foreign' >> cabal.project"
- "echo 'allow-newer: servant-quickcheck:servant' >> cabal.project" - "echo 'allow-newer: servant-quickcheck:servant' >> cabal.project"
- "echo 'allow-newer: servant-quickcheck:servant-client' >> cabal.project" - "echo 'allow-newer: servant-quickcheck:servant-client' >> cabal.project"
- "echo 'allow-newer: servant-quickcheck:servant-server' >> cabal.project" - "echo 'allow-newer: servant-quickcheck:servant-server' >> cabal.project"
@ -174,6 +183,15 @@ script:
- "echo 'constraints: foundation >=0.0.14' >> cabal.project" - "echo 'constraints: foundation >=0.0.14' >> cabal.project"
- "echo 'constraints: memory <0.14.12 || >0.14.12' >> cabal.project" - "echo 'constraints: memory <0.14.12 || >0.14.12' >> cabal.project"
- "echo 'allow-newer: servant-js:base' >> cabal.project" - "echo 'allow-newer: servant-js:base' >> cabal.project"
- "echo 'allow-newer: servant-pagination:servant' >> cabal.project"
- "echo 'allow-newer: servant-pagination:servant-server' >> cabal.project"
- "echo 'allow-newer: servant-multipart:servant' >> cabal.project"
- "echo 'allow-newer: servant-multipart:servant-server' >> cabal.project"
- "echo 'allow-newer: servant-auth-server:servant' >> cabal.project"
- "echo 'allow-newer: servant-auth-server:servant-server' >> cabal.project"
- "echo 'allow-newer: servant-auth-server:http-api-data' >> cabal.project"
- "echo 'allow-newer: servant-js:servant' >> cabal.project"
- "echo 'allow-newer: servant-js:servant-foreign' >> cabal.project"
- "echo 'allow-newer: servant-quickcheck:servant' >> cabal.project" - "echo 'allow-newer: servant-quickcheck:servant' >> cabal.project"
- "echo 'allow-newer: servant-quickcheck:servant-client' >> cabal.project" - "echo 'allow-newer: servant-quickcheck:servant-client' >> cabal.project"
- "echo 'allow-newer: servant-quickcheck:servant-server' >> cabal.project" - "echo 'allow-newer: servant-quickcheck:servant-server' >> cabal.project"

View file

@ -1,10 +1,19 @@
# With common maintenance tasks # With common maintenance tasks
HC ?= ghc-8.4.4
all : all :
@echo "Don't try to make all at once!" @echo "Don't try to make all at once!"
really-all :
$(MAKE) build-ghc
$(MAKE) build-ghc HC=ghc-8.0.2
$(MAKE) build-ghc HC=ghc-8.2.2
$(MAKE) build-ghc HC=ghc-8.6.3
$(MAKE) build-ghcjs
build-ghc : build-ghc :
cabal v2-build all cabal v2-build -w $(HC) all
build-ghcjs : build-ghcjs :
cabal v2-build --builddir=dist-newstyle-ghcjs --project-file=cabal.ghcjs.project all cabal v2-build --builddir=dist-newstyle-ghcjs --project-file=cabal.ghcjs.project all

View file

@ -44,10 +44,10 @@ constraints:
memory <0.14.12 || >0.14.12 memory <0.14.12 || >0.14.12
allow-newer: allow-newer:
-- servant-pagination:servant, servant-pagination:servant-server, servant-pagination:servant, servant-pagination:servant-server,
-- servant-multipart:servant, servant-multipart:servant-server, servant-multipart:servant, servant-multipart:servant-server,
-- servant-auth-server:servant, servant-auth-server:servant-server, servant-auth-server:http-api-data, servant-auth-server:servant, servant-auth-server:servant-server, servant-auth-server:http-api-data,
-- servant-js:servant, servant-js:servant-foreign, servant-js:servant, servant-js:servant-foreign
-- servant-quickcheck -- servant-quickcheck
allow-newer: allow-newer:

View file

@ -1,6 +1,6 @@
cabal-version: >=1.10 cabal-version: >=1.10
name: servant-client-core name: servant-client-core
version: 0.15 version: 0.16
synopsis: Core functionality and class for client function generation for servant APIs synopsis: Core functionality and class for client function generation for servant APIs
category: Servant, Web category: Servant, Web
@ -67,7 +67,7 @@ library
-- Servant dependencies -- Servant dependencies
build-depends: build-depends:
servant >= 0.15 && <0.16 servant >= 0.16 && <0.17
-- Other dependencies: Lower bound around what is in the latest Stackage LTS. -- Other dependencies: Lower bound around what is in the latest Stackage LTS.
-- Here can be exceptions if we really need features from the newer versions. -- Here can be exceptions if we really need features from the newer versions.

View file

@ -1,9 +1,10 @@
cabal-version: >=1.10 cabal-version: >=1.10
name: servant-client-ghcjs name: servant-client-ghcjs
version: 0.14 version: 0.16
synopsis:
Automatic derivation of querying functions for servant webservices for GHCJS
synopsis: Automatic derivation of querying functions for servant webservices for GHCJS category: Servant, Web
category: Servant, Web
description: description:
This library lets you automatically derive Haskell functions that This library lets you automatically derive Haskell functions that
let you query each endpoint of a <http://hackage.haskell.org/package/servant servant> webservice. let you query each endpoint of a <http://hackage.haskell.org/package/servant servant> webservice.
@ -12,52 +13,52 @@ description:
. .
<https://github.com/haskell-servant/servant/blob/master/servant-client/CHANGELOG.md CHANGELOG> <https://github.com/haskell-servant/servant/blob/master/servant-client/CHANGELOG.md CHANGELOG>
homepage: http://haskell-servant.readthedocs.org/ homepage: http://haskell-servant.readthedocs.org/
bug-reports: http://github.com/haskell-servant/servant/issues bug-reports: http://github.com/haskell-servant/servant/issues
license: BSD3 license: BSD3
license-file: LICENSE license-file: LICENSE
author: Servant Contributors author: Servant Contributors
maintainer: haskell-servant-maintainers@googlegroups.com maintainer: haskell-servant-maintainers@googlegroups.com
copyright: 2014-2016 Zalora South East Asia Pte Ltd, 2016-2018 Servant Contributors copyright:
build-type: Simple 2014-2016 Zalora South East Asia Pte Ltd, 2016-2018 Servant Contributors
tested-with:
GHC >= 7.8
build-type: Simple
tested-with: ghc >=7.8
extra-source-files: extra-source-files:
CHANGELOG.md CHANGELOG.md
README.md README.md
source-repository head source-repository head
type: git type: git
location: http://github.com/haskell-servant/servant.git location: http://github.com/haskell-servant/servant.git
library library
exposed-modules: exposed-modules:
Servant.Client.Ghcjs Servant.Client.Ghcjs
Servant.Client.Internal.XhrClient Servant.Client.Internal.XhrClient
build-depends:
base >= 4.11 && < 4.12
, bytestring >= 0.10 && < 0.11
, case-insensitive >= 1.2.0.0 && < 1.3.0.0
, containers >= 0.5 && < 0.7
, exceptions >= 0.8 && < 0.11
, ghcjs-base >= 0.2.0.0 && < 0.3.0.0
, ghcjs-prim >= 0.1.0.0 && < 0.2.0.0
, http-media >= 0.6.2 && < 0.8
, http-types >= 0.12 && < 0.13
, monad-control >= 1.0.0.4 && < 1.1
, mtl >= 2.2.2 && < 2.3
, semigroupoids >= 5.3 && < 5.4
, string-conversions >= 0.3 && < 0.5
, transformers >= 0.3 && < 0.6
, transformers-base >= 0.4.4 && < 0.5
build-depends:
base >=4.11 && <4.12
, bytestring >=0.10 && <0.11
, case-insensitive >=1.2.0.0 && <1.3.0.0
, containers >=0.5 && <0.7
, exceptions >=0.8 && <0.11
, ghcjs-base >=0.2.0.0 && <0.3.0.0
, ghcjs-prim >=0.1.0.0 && <0.2.0.0
, http-media >=0.6.2 && <0.8
, http-types >=0.12 && <0.13
, monad-control >=1.0.0.4 && <1.1
, mtl >=2.2.2 && <2.3
, semigroupoids >=5.3 && <5.4
, string-conversions >=0.3 && <0.5
, transformers >=0.3 && <0.6
, transformers-base >=0.4.4 && <0.5
-- strict, as we re-export stuff -- strict, as we re-export stuff
build-depends: build-depends:
servant == 0.15.*, servant >=0.16 && <0.17
servant-client-core == 0.15.* , servant-client-core >=0.16 && <0.16.1
hs-source-dirs: src hs-source-dirs: src
default-language: Haskell2010 default-language: Haskell2010
ghc-options: -Wall -Wno-redundant-constraints ghc-options: -Wall -Wno-redundant-constraints

View file

@ -1,7 +1,6 @@
cabal-version: >=1.10 cabal-version: >=1.10
name: servant-client name: servant-client
version: 0.15 version: 0.16
x-revision: 1
synopsis: Automatic derivation of querying functions for servant synopsis: Automatic derivation of querying functions for servant
category: Servant, Web category: Servant, Web
@ -62,8 +61,8 @@ library
-- Servant dependencies. -- Servant dependencies.
-- Strict dependency on `servant-client-core` as we re-export things. -- Strict dependency on `servant-client-core` as we re-export things.
build-depends: build-depends:
servant == 0.15.* servant == 0.16.*
, servant-client-core >= 0.15 && <0.15.1 , servant-client-core >= 0.16 && <0.16.1
-- Other dependencies: Lower bound around what is in the latest Stackage LTS. -- Other dependencies: Lower bound around what is in the latest Stackage LTS.
-- Here can be exceptions if we really need features from the newer versions. -- Here can be exceptions if we really need features from the newer versions.
@ -120,8 +119,8 @@ test-suite spec
, HUnit >= 1.6.0.0 && < 1.7 , HUnit >= 1.6.0.0 && < 1.7
, network >= 2.8.0.0 && < 3.1 , network >= 2.8.0.0 && < 3.1
, QuickCheck >= 2.12.6.1 && < 2.13 , QuickCheck >= 2.12.6.1 && < 2.13
, servant == 0.15.* , servant == 0.16.*
, servant-server == 0.15.* , servant-server == 0.16.*
, tdigest >= 0.2 && < 0.3 , tdigest >= 0.2 && < 0.3
build-tool-depends: build-tool-depends:

View file

@ -1,6 +1,7 @@
cabal-version: >=1.10 cabal-version: >=1.10
name: servant-conduit name: servant-conduit
version: 0.15 version: 0.15
x-revision: 1
synopsis: Servant Stream support for conduit. synopsis: Servant Stream support for conduit.
category: Servant, Web, Enumerator category: Servant, Web, Enumerator
@ -37,7 +38,7 @@ library
, conduit >=1.3.1 && <1.4 , conduit >=1.3.1 && <1.4
, mtl >=2.2.2 && <2.3 , mtl >=2.2.2 && <2.3
, resourcet >=1.2.2 && <1.3 , resourcet >=1.2.2 && <1.3
, servant >=0.15 && <0.16 , servant >=0.15 && <0.17
, unliftio-core >=0.1.2.0 && <0.2 , unliftio-core >=0.1.2.0 && <0.2
hs-source-dirs: src hs-source-dirs: src
default-language: Haskell2010 default-language: Haskell2010
@ -58,8 +59,8 @@ test-suite example
, resourcet , resourcet
, servant , servant
, servant-conduit , servant-conduit
, servant-server >=0.15 && <0.16 , servant-server >=0.15 && <0.17
, servant-client >=0.15 && <0.16 , servant-client >=0.15 && <0.17
, wai >=3.2.1.2 && <3.3 , wai >=3.2.1.2 && <3.3
, warp >=3.2.25 && <3.3 , warp >=3.2.25 && <3.3
, http-client , http-client

View file

@ -1,6 +1,7 @@
cabal-version: >=1.10 cabal-version: >=1.10
name: servant-docs name: servant-docs
version: 0.11.3 version: 0.11.3
x-revision: 1
synopsis: generate API docs for your servant webservice synopsis: generate API docs for your servant webservice
category: Servant, Web category: Servant, Web
@ -51,7 +52,7 @@ library
-- Servant dependencies -- Servant dependencies
build-depends: build-depends:
servant == 0.15.* servant >= 0.15 && <0.17
-- Other dependencies: Lower bound around what is in the latest Stackage LTS. -- Other dependencies: Lower bound around what is in the latest Stackage LTS.
-- Here can be exceptions if we really need features from the newer versions. -- Here can be exceptions if we really need features from the newer versions.

View file

@ -1,6 +1,7 @@
cabal-version: >=1.10 cabal-version: >=1.10
name: servant-foreign name: servant-foreign
version: 0.15 version: 0.15
x-revision: 1
synopsis: Helpers for generating clients for servant APIs in any programming language synopsis: Helpers for generating clients for servant APIs in any programming language
category: Servant, Web category: Servant, Web
@ -50,7 +51,7 @@ library
-- Servant dependencies -- Servant dependencies
build-depends: build-depends:
servant == 0.15.* servant >=0.15 && <0.17
-- Other dependencies: Lower bound around what is in the latest Stackage LTS. -- Other dependencies: Lower bound around what is in the latest Stackage LTS.
-- Here can be exceptions if we really need features from the newer versions. -- Here can be exceptions if we really need features from the newer versions.

View file

@ -58,8 +58,8 @@ library
-- Servant dependencies. -- Servant dependencies.
-- Strict dependency on `servant-client-core` as we re-export things. -- Strict dependency on `servant-client-core` as we re-export things.
build-depends: build-depends:
servant == 0.15.* servant == 0.16.*
, servant-client-core >= 0.15 && <0.15.1 , servant-client-core >= 0.16 && <0.16.1
-- Other dependencies: Lower bound around what is in the latest Stackage LTS. -- Other dependencies: Lower bound around what is in the latest Stackage LTS.
-- Here can be exceptions if we really need features from the newer versions. -- Here can be exceptions if we really need features from the newer versions.
@ -120,8 +120,8 @@ test-suite spec
, HUnit >= 1.6.0.0 && < 1.7 , HUnit >= 1.6.0.0 && < 1.7
, network >= 2.8.0.0 && < 3.1 , network >= 2.8.0.0 && < 3.1
, QuickCheck >= 2.12.6.1 && < 2.13 , QuickCheck >= 2.12.6.1 && < 2.13
, servant == 0.15.* , servant == 0.16.*
, servant-server == 0.15.* , servant-server == 0.16.*
, tdigest >= 0.2 && < 0.3 , tdigest >= 0.2 && < 0.3
build-tool-depends: build-tool-depends:

View file

@ -1,6 +1,7 @@
cabal-version: >=1.10 cabal-version: >=1.10
name: servant-machines name: servant-machines
version: 0.15 version: 0.15
x-revision: 1
synopsis: Servant Stream support for machines synopsis: Servant Stream support for machines
category: Servant, Web, Enumerator category: Servant, Web, Enumerator
@ -36,7 +37,7 @@ library
, bytestring >=0.10.8.1 && <0.11 , bytestring >=0.10.8.1 && <0.11
, machines >=0.6.4 && <0.7 , machines >=0.6.4 && <0.7
, mtl >=2.2.2 && <2.3 , mtl >=2.2.2 && <2.3
, servant >=0.15 && <0.16 , servant >=0.15 && <0.17
hs-source-dirs: src hs-source-dirs: src
default-language: Haskell2010 default-language: Haskell2010
ghc-options: -Wall ghc-options: -Wall
@ -55,8 +56,8 @@ test-suite example
, servant , servant
, machines , machines
, servant-machines , servant-machines
, servant-server >=0.15 && <0.16 , servant-server >=0.15 && <0.17
, servant-client >=0.15 && <0.16 , servant-client >=0.15 && <0.17
, wai >=3.2.1.2 && <3.3 , wai >=3.2.1.2 && <3.3
, warp >=3.2.25 && <3.3 , warp >=3.2.25 && <3.3
, http-client , http-client

View file

@ -1,6 +1,7 @@
cabal-version: >=1.10
name: servant-pipes name: servant-pipes
version: 0.15 version: 0.15
cabal-version: >=1.10 x-revision: 1
synopsis: Servant Stream support for pipes synopsis: Servant Stream support for pipes
category: Servant, Web, Pipes category: Servant, Web, Pipes
@ -38,7 +39,7 @@ library
, pipes-safe >=2.3.1 && <2.4 , pipes-safe >=2.3.1 && <2.4
, mtl >=2.2.2 && <2.3 , mtl >=2.2.2 && <2.3
, monad-control >=1.0.2.3 && <1.1 , monad-control >=1.0.2.3 && <1.1
, servant >=0.15 && <0.16 , servant >=0.15 && <0.17
hs-source-dirs: src hs-source-dirs: src
default-language: Haskell2010 default-language: Haskell2010
ghc-options: -Wall ghc-options: -Wall
@ -59,8 +60,8 @@ test-suite example
, pipes-safe , pipes-safe
, servant-pipes , servant-pipes
, pipes-bytestring >=2.1.6 && <2.2 , pipes-bytestring >=2.1.6 && <2.2
, servant-server >=0.15 && <0.16 , servant-server >=0.15 && <0.17
, servant-client >=0.15 && <0.16 , servant-client >=0.15 && <0.17
, wai >=3.2.1.2 && <3.3 , wai >=3.2.1.2 && <3.3
, warp >=3.2.25 && <3.3 , warp >=3.2.25 && <3.3
, http-client , http-client

View file

@ -1,6 +1,6 @@
cabal-version: >=1.10 cabal-version: >=1.10
name: servant-server name: servant-server
version: 0.15 version: 0.16
synopsis: A family of combinators for defining webservices APIs and serving them synopsis: A family of combinators for defining webservices APIs and serving them
category: Servant, Web category: Servant, Web
@ -76,7 +76,7 @@ library
-- Servant dependencies -- Servant dependencies
-- strict dependency as we re-export 'servant' things. -- strict dependency as we re-export 'servant' things.
build-depends: build-depends:
servant >= 0.15 && < 0.15.1 servant >= 0.16 && < 0.17.1
, http-api-data >= 0.4 && < 0.4.1 , http-api-data >= 0.4 && < 0.4.1
-- Other dependencies: Lower bound around what is in the latest Stackage LTS. -- Other dependencies: Lower bound around what is in the latest Stackage LTS.

View file

@ -1,6 +1,6 @@
cabal-version: >=1.10 cabal-version: >=1.10
name: servant name: servant
version: 0.15 version: 0.16
synopsis: A family of combinators for defining webservices APIs synopsis: A family of combinators for defining webservices APIs
category: Servant, Web category: Servant, Web