Prepare 0.18.3 release (#1430)
This commit is contained in:
parent
3e29b5194e
commit
e2b897d3c0
14 changed files with 92 additions and 11 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.3
|
||||
------
|
||||
|
||||
### Significant changes
|
||||
|
||||
- Add response header support to UVerb (#1420)
|
||||
|
||||
### Other changes
|
||||
|
||||
- Support GHC-9.0.1.
|
||||
- Bump `bytestring`, `hspec`, `base64-bytestring` and `QuickCheck` dependencies.
|
||||
|
||||
0.18.2
|
||||
------
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
cabal-version: >=1.10
|
||||
name: servant-client-core
|
||||
version: 0.18.2
|
||||
version: 0.18.3
|
||||
|
||||
synopsis: Core functionality and class for client function generation for servant APIs
|
||||
category: Servant, Web
|
||||
|
@ -64,7 +64,7 @@ library
|
|||
|
||||
-- Servant dependencies
|
||||
build-depends:
|
||||
servant >= 0.18.2 && <0.19
|
||||
servant >= 0.18.3 && <0.19
|
||||
|
||||
-- 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-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.3
|
||||
------
|
||||
|
||||
### Significant changes
|
||||
|
||||
- Add response header support to UVerb (#1420)
|
||||
|
||||
### Other changes
|
||||
|
||||
- Support GHC-9.0.1.
|
||||
- Bump `bytestring`, `hspec`, `http-client` and `QuickCheck` dependencies.
|
||||
|
||||
0.18.2
|
||||
------
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
cabal-version: >=1.10
|
||||
name: servant-client
|
||||
version: 0.18.2
|
||||
version: 0.18.3
|
||||
|
||||
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.2 && <0.18.3
|
||||
, servant-client-core >= 0.18.3 && <0.18.4
|
||||
|
||||
-- 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.9
|
||||
------
|
||||
|
||||
### Significant changes
|
||||
|
||||
- Use Capture Description if available (#1423).
|
||||
|
||||
### Other changes
|
||||
|
||||
- Support GHC-9.0.1.
|
||||
- Bump `bytestring` and `lens` dependencies.
|
||||
|
||||
0.11.8
|
||||
------
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
cabal-version: >=1.10
|
||||
name: servant-docs
|
||||
version: 0.11.8
|
||||
version: 0.11.9
|
||||
|
||||
synopsis: generate API docs for your servant webservice
|
||||
category: Servant, Web
|
||||
|
|
|
@ -1,6 +1,15 @@
|
|||
[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.3
|
||||
------
|
||||
|
||||
### Other changes
|
||||
|
||||
- Support GHC-9.0.1.
|
||||
- Fix test suite running in CI.
|
||||
- Bump `bytestring` and `hspec` dependencies.
|
||||
|
||||
0.18.2
|
||||
------
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
cabal-version: >=1.10
|
||||
name: servant-http-streams
|
||||
version: 0.18.2
|
||||
version: 0.18.3
|
||||
|
||||
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.2 && <0.18.3
|
||||
, servant-client-core >= 0.18.3 && <0.18.4
|
||||
|
||||
-- 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,3 +1,14 @@
|
|||
0.15.3
|
||||
------
|
||||
|
||||
### Other changes
|
||||
|
||||
- Support GHC-9.0.1.
|
||||
- Bump `bytestring` dependency.
|
||||
|
||||
0.15.2
|
||||
------
|
||||
|
||||
0.15.1
|
||||
------
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
cabal-version: >=1.10
|
||||
name: servant-pipes
|
||||
version: 0.15.2
|
||||
version: 0.15.3
|
||||
|
||||
synopsis: Servant Stream support for pipes
|
||||
category: Servant, Web, Pipes
|
||||
|
|
|
@ -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.3
|
||||
------
|
||||
|
||||
### Significant changes
|
||||
|
||||
- Add response header support to UVerb (#1420)
|
||||
|
||||
### Other changes
|
||||
|
||||
- Support GHC-9.0.1.
|
||||
- Bump `bytestring`, `hspec` and `base64-bytestring` dependencies.
|
||||
|
||||
0.18.2
|
||||
------
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
cabal-version: >=1.10
|
||||
name: servant-server
|
||||
version: 0.18.2
|
||||
version: 0.18.3
|
||||
|
||||
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.2 && < 0.18.3
|
||||
servant >= 0.18.3 && < 0.18.4
|
||||
, http-api-data >= 0.4.1 && < 0.4.4
|
||||
|
||||
-- Other dependencies: Lower bound around what is in the latest Stackage LTS.
|
||||
|
|
|
@ -1,5 +1,18 @@
|
|||
[The latest version of this document is on GitHub.](https://github.com/haskell-servant/servant/blob/master/servant/CHANGELOG.md)
|
||||
|
||||
0.18.3
|
||||
------
|
||||
|
||||
### Significant changes
|
||||
|
||||
- Add response header support to UVerb (#1420).
|
||||
- Use Capture Description if available (#1423).
|
||||
|
||||
### Other changes
|
||||
|
||||
- Support GHC-9.0.1.
|
||||
- Bump `bytestring`, `attoparsec`, `hspec` and `singleton-bool` dependencies.
|
||||
|
||||
0.18.2
|
||||
------
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
cabal-version: >=1.10
|
||||
name: servant
|
||||
version: 0.18.2.1
|
||||
version: 0.18.3
|
||||
|
||||
synopsis: A family of combinators for defining webservices APIs
|
||||
category: Servant, Web
|
||||
|
|
Loading…
Reference in a new issue