Prepare 0.18.2 release (#1364)

This commit is contained in:
Maxim Koltsov 2020-11-22 17:51:32 +03:00 committed by GitHub
parent ce638027a8
commit 0ad2bd221a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
14 changed files with 65 additions and 10 deletions

View File

@ -1,6 +1,13 @@
[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.2
------
### Significant changes
- Support `Fragment` combinator.
0.18.1
------

View File

@ -1,6 +1,6 @@
cabal-version: >=1.10
name: servant-client-core
version: 0.18.1
version: 0.18.2
synopsis: Core functionality and class for client function generation for servant APIs
category: Servant, Web

View File

@ -1,6 +1,13 @@
[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.2
------
### Significant changes
- Support `Fragment` combinator.
0.18.1
------

View File

@ -1,6 +1,6 @@
cabal-version: >=1.10
name: servant-client
version: 0.18.1
version: 0.18.2
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.1 && <0.18.2
, servant-client-core >= 0.18.2 && <0.18.3
-- 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.

View File

@ -1,6 +1,13 @@
[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.8
------
### Significant changes
- Support `Fragment` combinator.
0.11.7
------

View File

@ -1,6 +1,6 @@
cabal-version: >=1.10
name: servant-docs
version: 0.11.7
version: 0.11.8
synopsis: generate API docs for your servant webservice
category: Servant, Web

View File

@ -1,6 +1,18 @@
[The latest version of this document is on GitHub.](https://github.com/haskell-servant/servant/blob/master/servant-foreign/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.15.3
------
### Significant changes
- Support `Fragment` combinator.
0.15.2
------
* Support `servant-0.18`.
0.15.1
------

View File

@ -1,6 +1,6 @@
cabal-version: >=1.10
name: servant-foreign
version: 0.15.2
version: 0.15.3
synopsis: Helpers for generating clients for servant APIs in any programming language
category: Servant, Web

View File

@ -1,6 +1,13 @@
[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.2
------
### Significant changes
- Support `servant-client-core` 0.18.2.
0.18.1
------

View File

@ -1,6 +1,6 @@
cabal-version: >=1.10
name: servant-http-streams
version: 0.18.1
version: 0.18.2
synopsis: Automatic derivation of querying functions for servant
category: Servant, Web
@ -55,7 +55,7 @@ library
-- Strict dependency on `servant-client-core` as we re-export things.
build-depends:
servant == 0.18.*
, servant-client-core >= 0.18.1 && <0.18.2
, servant-client-core >= 0.18.2 && <0.18.3
-- 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.

View File

@ -1,6 +1,13 @@
[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.2
------
### Significant changes
- Support `Fragment` combinator.
0.18.1
------

View File

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

View File

@ -1,5 +1,13 @@
[The latest version of this document is on GitHub.](https://github.com/haskell-servant/servant/blob/master/servant/CHANGELOG.md)
0.18.2
------
### Significant changes
- Introduce `Fragment` combinator.
- Fix `MimeRender` and `MimeUnrender` instances for `WithStatus`.
0.18.1
------

View File

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