Merge pull request #1354 from haskell-servant/bump-versions
Bump versions
This commit is contained in:
commit
c95faa53fe
12 changed files with 78 additions and 8 deletions
|
@ -1,6 +1,18 @@
|
|||
[The latest version of this document is on GitHub.](https://github.com/haskell-servant/servant/blob/master/servant-client-core/CHANGELOG.md)
|
||||
[Changelog for `servant` package contains significant entries for all core packages.](https://github.com/haskell-servant/servant/blob/master/servant/CHANGELOG.md)
|
||||
|
||||
0.18.1
|
||||
------
|
||||
|
||||
### Significant changes
|
||||
|
||||
- Union verbs
|
||||
|
||||
### Other changes
|
||||
|
||||
- Bump "tested-with" ghc versions
|
||||
- Loosen bound on base16-bytestring
|
||||
|
||||
0.18
|
||||
----
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
cabal-version: >=1.10
|
||||
name: servant-client-core
|
||||
version: 0.18
|
||||
version: 0.18.1
|
||||
|
||||
synopsis: Core functionality and class for client function generation for servant APIs
|
||||
category: Servant, Web
|
||||
|
|
|
@ -1,6 +1,17 @@
|
|||
[The latest version of this document is on GitHub.](https://github.com/haskell-servant/servant/blob/master/servant-client/CHANGELOG.md)
|
||||
[Changelog for `servant` package contains significant entries for all core packages.](https://github.com/haskell-servant/servant/blob/master/servant/CHANGELOG.md)
|
||||
|
||||
0.18.1
|
||||
------
|
||||
|
||||
### Significant changes
|
||||
|
||||
- Union verbs
|
||||
|
||||
### Other changes
|
||||
|
||||
- Bump "tested-with" ghc versions
|
||||
|
||||
0.18
|
||||
----
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
cabal-version: >=1.10
|
||||
name: servant-client
|
||||
version: 0.18
|
||||
version: 0.18.1
|
||||
|
||||
synopsis: Automatic derivation of querying functions for servant
|
||||
category: Servant, Web
|
||||
|
@ -58,7 +58,7 @@ library
|
|||
-- Strict dependency on `servant-client-core` as we re-export things.
|
||||
build-depends:
|
||||
servant == 0.18.*
|
||||
, servant-client-core >= 0.18 && <0.18.1
|
||||
, servant-client-core >= 0.18 && <0.18.2
|
||||
|
||||
-- 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.
|
||||
|
|
|
@ -1,6 +1,18 @@
|
|||
[The latest version of this document is on GitHub.](https://github.com/haskell-servant/servant/blob/master/servant-docs/CHANGELOG.md)
|
||||
[Changelog for `servant` package contains significant entries for all core packages.](https://github.com/haskell-servant/servant/blob/master/servant/CHANGELOG.md)
|
||||
|
||||
0.11.7
|
||||
------
|
||||
|
||||
### Significant changes
|
||||
|
||||
- Add instance for ToSample NonEmpty
|
||||
|
||||
### Other changes
|
||||
|
||||
- Bump "tested-with" ghc versions
|
||||
- Fix servant-docs code sample in README
|
||||
|
||||
0.11.5
|
||||
----
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
cabal-version: >=1.10
|
||||
name: servant-docs
|
||||
version: 0.11.6
|
||||
version: 0.11.7
|
||||
|
||||
synopsis: generate API docs for your servant webservice
|
||||
category: Servant, Web
|
||||
|
|
|
@ -1,6 +1,17 @@
|
|||
[The latest version of this document is on GitHub.](https://github.com/haskell-servant/servant/blob/master/servant-http-streams/CHANGELOG.md)
|
||||
[Changelog for `servant` package contains significant entries for all core packages.](https://github.com/haskell-servant/servant/blob/master/servant/CHANGELOG.md)
|
||||
|
||||
0.18.1
|
||||
------
|
||||
|
||||
### Significant changes
|
||||
|
||||
- Union verbs
|
||||
|
||||
### Other changes
|
||||
|
||||
- Bump "tested-with" ghc versions
|
||||
|
||||
0.18
|
||||
----
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
cabal-version: >=1.10
|
||||
name: servant-http-streams
|
||||
version: 0.18
|
||||
version: 0.18.1
|
||||
|
||||
synopsis: Automatic derivation of querying functions for servant
|
||||
category: Servant, Web
|
||||
|
|
|
@ -1,6 +1,18 @@
|
|||
[The latest version of this document is on GitHub.](https://github.com/haskell-servant/servant/blob/master/servant-server/CHANGELOG.md)
|
||||
[Changelog for `servant` package contains significant entries for all core packages.](https://github.com/haskell-servant/servant/blob/master/servant/CHANGELOG.md)
|
||||
|
||||
0.18.1
|
||||
------
|
||||
|
||||
### Significant changes
|
||||
|
||||
- Union verbs
|
||||
|
||||
### Other changes
|
||||
|
||||
- Bump "tested-with" ghc versions
|
||||
- Allow newer dependencies
|
||||
|
||||
0.18
|
||||
----
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
cabal-version: >=1.10
|
||||
name: servant-server
|
||||
version: 0.18
|
||||
version: 0.18.1
|
||||
|
||||
synopsis: A family of combinators for defining webservices APIs and serving them
|
||||
category: Servant, Web
|
||||
|
@ -162,7 +162,7 @@ test-suite spec
|
|||
, QuickCheck >= 2.12.6.1 && < 2.14
|
||||
, should-not-typecheck >= 2.1.0 && < 2.2
|
||||
, temporary >= 1.3 && < 1.4
|
||||
, wai-extra >= 3.0.24.3 && < 3.1
|
||||
, wai-extra >= 3.0.24.3 && < 3.2
|
||||
|
||||
build-tool-depends:
|
||||
hspec-discover:hspec-discover >= 2.6.0 && <2.8
|
||||
|
|
|
@ -1,5 +1,17 @@
|
|||
[The latest version of this document is on GitHub.](https://github.com/haskell-servant/servant/blob/master/servant/CHANGELOG.md)
|
||||
|
||||
0.18.1
|
||||
------
|
||||
|
||||
### Significant changes
|
||||
|
||||
- Union verbs
|
||||
|
||||
### Other changes
|
||||
|
||||
- Bump "tested-with" ghc versions
|
||||
- Allow newer dependencies
|
||||
|
||||
0.18
|
||||
----
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
cabal-version: >=1.10
|
||||
name: servant
|
||||
version: 0.18
|
||||
version: 0.18.1
|
||||
|
||||
synopsis: A family of combinators for defining webservices APIs
|
||||
category: Servant, Web
|
||||
|
|
Loading…
Reference in a new issue