Skip to content

Commit e2b897d

Browse files
authored
Prepare 0.18.3 release (#1430)
1 parent 3e29b51 commit e2b897d

File tree

14 files changed

+92
-11
lines changed

14 files changed

+92
-11
lines changed

servant-client-core/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
[The latest version of this document is on GitHub.](https://github.com/haskell-servant/servant/blob/master/servant-client-core/CHANGELOG.md)
22
[Changelog for `servant` package contains significant entries for all core packages.](https://github.com/haskell-servant/servant/blob/master/servant/CHANGELOG.md)
33

4+
0.18.3
5+
------
6+
7+
### Significant changes
8+
9+
- Add response header support to UVerb (#1420)
10+
11+
### Other changes
12+
13+
- Support GHC-9.0.1.
14+
- Bump `bytestring`, `hspec`, `base64-bytestring` and `QuickCheck` dependencies.
15+
416
0.18.2
517
------
618

servant-client-core/servant-client-core.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: >=1.10
22
name: servant-client-core
3-
version: 0.18.2
3+
version: 0.18.3
44

55
synopsis: Core functionality and class for client function generation for servant APIs
66
category: Servant, Web
@@ -64,7 +64,7 @@ library
6464

6565
-- Servant dependencies
6666
build-depends:
67-
servant >= 0.18.2 && <0.19
67+
servant >= 0.18.3 && <0.19
6868

6969
-- Other dependencies: Lower bound around what is in the latest Stackage LTS.
7070
-- Here can be exceptions if we really need features from the newer versions.

servant-client/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
[The latest version of this document is on GitHub.](https://github.com/haskell-servant/servant/blob/master/servant-client/CHANGELOG.md)
22
[Changelog for `servant` package contains significant entries for all core packages.](https://github.com/haskell-servant/servant/blob/master/servant/CHANGELOG.md)
33

4+
0.18.3
5+
------
6+
7+
### Significant changes
8+
9+
- Add response header support to UVerb (#1420)
10+
11+
### Other changes
12+
13+
- Support GHC-9.0.1.
14+
- Bump `bytestring`, `hspec`, `http-client` and `QuickCheck` dependencies.
15+
416
0.18.2
517
------
618

servant-client/servant-client.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: >=1.10
22
name: servant-client
3-
version: 0.18.2
3+
version: 0.18.3
44

55
synopsis: Automatic derivation of querying functions for servant
66
category: Servant, Web
@@ -58,7 +58,7 @@ library
5858
-- Strict dependency on `servant-client-core` as we re-export things.
5959
build-depends:
6060
servant == 0.18.*
61-
, servant-client-core >= 0.18.2 && <0.18.3
61+
, servant-client-core >= 0.18.3 && <0.18.4
6262

6363
-- Other dependencies: Lower bound around what is in the latest Stackage LTS.
6464
-- Here can be exceptions if we really need features from the newer versions.

servant-docs/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
[The latest version of this document is on GitHub.](https://github.com/haskell-servant/servant/blob/master/servant-docs/CHANGELOG.md)
22
[Changelog for `servant` package contains significant entries for all core packages.](https://github.com/haskell-servant/servant/blob/master/servant/CHANGELOG.md)
33

4+
0.11.9
5+
------
6+
7+
### Significant changes
8+
9+
- Use Capture Description if available (#1423).
10+
11+
### Other changes
12+
13+
- Support GHC-9.0.1.
14+
- Bump `bytestring` and `lens` dependencies.
15+
416
0.11.8
517
------
618

servant-docs/servant-docs.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: >=1.10
22
name: servant-docs
3-
version: 0.11.8
3+
version: 0.11.9
44

55
synopsis: generate API docs for your servant webservice
66
category: Servant, Web

servant-http-streams/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
[The latest version of this document is on GitHub.](https://github.com/haskell-servant/servant/blob/master/servant-http-streams/CHANGELOG.md)
22
[Changelog for `servant` package contains significant entries for all core packages.](https://github.com/haskell-servant/servant/blob/master/servant/CHANGELOG.md)
33

4+
0.18.3
5+
------
6+
7+
### Other changes
8+
9+
- Support GHC-9.0.1.
10+
- Fix test suite running in CI.
11+
- Bump `bytestring` and `hspec` dependencies.
12+
413
0.18.2
514
------
615

servant-http-streams/servant-http-streams.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: >=1.10
22
name: servant-http-streams
3-
version: 0.18.2
3+
version: 0.18.3
44

55
synopsis: Automatic derivation of querying functions for servant
66
category: Servant, Web
@@ -55,7 +55,7 @@ library
5555
-- Strict dependency on `servant-client-core` as we re-export things.
5656
build-depends:
5757
servant == 0.18.*
58-
, servant-client-core >= 0.18.2 && <0.18.3
58+
, servant-client-core >= 0.18.3 && <0.18.4
5959

6060
-- Other dependencies: Lower bound around what is in the latest Stackage LTS.
6161
-- Here can be exceptions if we really need features from the newer versions.

servant-pipes/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
0.15.3
2+
------
3+
4+
### Other changes
5+
6+
- Support GHC-9.0.1.
7+
- Bump `bytestring` dependency.
8+
9+
0.15.2
10+
------
11+
112
0.15.1
213
------
314

servant-pipes/servant-pipes.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: >=1.10
22
name: servant-pipes
3-
version: 0.15.2
3+
version: 0.15.3
44

55
synopsis: Servant Stream support for pipes
66
category: Servant, Web, Pipes

0 commit comments

Comments
 (0)