Bump version in preparation for new release
This commit is contained in:
parent
9e4a97eb78
commit
bd698cad3b
12 changed files with 77 additions and 7 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
|
||||
|
|
|
@ -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