Skip to content

Commit ab6131d

Browse files
committed
version bump
1 parent d876031 commit ab6131d

File tree

11 files changed

+28
-28
lines changed

11 files changed

+28
-28
lines changed

doc/tutorial/tutorial.cabal

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: tutorial
2-
version: 0.6.1
2+
version: 0.7
33
synopsis: The servant tutorial
44
homepage: http://haskell-servant.github.io/
55
license: BSD3
@@ -25,11 +25,11 @@ library
2525
, directory
2626
, blaze-markup
2727
, containers
28-
, servant == 0.6.*
29-
, servant-server == 0.6.*
30-
, servant-client == 0.6.*
31-
, servant-docs == 0.6.*
32-
, servant-js == 0.6.*
28+
, servant == 0.7.*
29+
, servant-server == 0.7.*
30+
, servant-client == 0.7.*
31+
, servant-docs == 0.7.*
32+
, servant-js == 0.7.*
3333
, warp
3434
, http-media
3535
, lucid

servant-blaze/servant-blaze.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
-- documentation, see http://haskell.org/cabal/users-guide/
33

44
name: servant-blaze
5-
version: 0.6.1
5+
version: 0.7
66
synopsis: Blaze-html support for servant
77
-- description:
88
homepage: http://haskell-servant.github.io/
@@ -25,7 +25,7 @@ library
2525
-- other-modules:
2626
-- other-extensions:
2727
build-depends: base >=4.7 && <5
28-
, servant == 0.6.*
28+
, servant == 0.7.*
2929
, http-media
3030
, blaze-html
3131
hs-source-dirs: src

servant-cassava/servant-cassava.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
-- documentation, see http://haskell.org/cabal/users-guide/
33

44
name: servant-cassava
5-
version: 0.6.1
5+
version: 0.7
66
synopsis: Servant CSV content-type for cassava
77
-- description:
88
homepage: http://haskell-servant.github.io/
@@ -22,7 +22,7 @@ library
2222
-- other-extensions:
2323
build-depends: base >=4.6 && <5
2424
, cassava >0.4 && <0.5
25-
, servant == 0.6.*
25+
, servant == 0.7.*
2626
, http-media
2727
, vector
2828
hs-source-dirs: src

servant-client/servant-client.cabal

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: servant-client
2-
version: 0.6.1
2+
version: 0.7
33
synopsis: automatical derivation of querying functions for servant webservices
44
description:
55
This library lets you derive automatically Haskell functions that
@@ -45,7 +45,7 @@ library
4545
, http-types
4646
, network-uri >= 2.6
4747
, safe
48-
, servant == 0.6.*
48+
, servant == 0.7.*
4949
, string-conversions
5050
, text
5151
, transformers
@@ -79,9 +79,9 @@ test-suite spec
7979
, HUnit
8080
, network >= 2.6
8181
, QuickCheck >= 2.7
82-
, servant == 0.6.*
82+
, servant == 0.7.*
8383
, servant-client
84-
, servant-server == 0.6.*
84+
, servant-server == 0.7.*
8585
, text
8686
, wai
8787
, warp

servant-docs/servant-docs.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: servant-docs
2-
version: 0.6.1
2+
version: 0.7
33
synopsis: generate API docs for your servant webservice
44
description:
55
Library for generating API docs from a servant API definition.
@@ -42,7 +42,7 @@ library
4242
, http-media >= 0.6
4343
, http-types >= 0.7
4444
, lens
45-
, servant == 0.6.*
45+
, servant == 0.7.*
4646
, string-conversions
4747
, text
4848
, unordered-containers

servant-foreign/servant-foreign.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: servant-foreign
2-
version: 0.6.1
2+
version: 0.7
33
synopsis: Helpers for generating clients for servant APIs in any programming language
44
description:
55
Helper types and functions for generating client functions for servant APIs in any programming language
@@ -31,7 +31,7 @@ library
3131
, Servant.Foreign.Inflections
3232
build-depends: base == 4.*
3333
, lens == 4.*
34-
, servant == 0.6.*
34+
, servant == 0.7.*
3535
, text >= 1.2 && < 1.3
3636
, http-types
3737
hs-source-dirs: src

servant-js/servant-js.cabal

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: servant-js
2-
version: 0.6.1
2+
version: 0.7
33
synopsis: Automatically derive javascript functions to query servant webservices.
44
description:
55
Automatically derive javascript functions to query servant webservices.
@@ -45,7 +45,7 @@ library
4545
, base-compat >= 0.9
4646
, charset >= 0.3
4747
, lens >= 4
48-
, servant-foreign == 0.6.*
48+
, servant-foreign == 0.7.*
4949
, text >= 1.2 && < 1.3
5050

5151
hs-source-dirs: src
@@ -67,8 +67,8 @@ executable counter
6767
, aeson >= 0.7 && < 0.12
6868
, filepath >= 1
6969
, lens >= 4
70-
, servant == 0.6.*
71-
, servant-server == 0.6.*
70+
, servant == 0.7.*
71+
, servant-server == 0.7.*
7272
, servant-js
7373
, stm
7474
, transformers

servant-lucid/servant-lucid.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
-- documentation, see http://haskell.org/cabal/users-guide/
33

44
name: servant-lucid
5-
version: 0.6.1
5+
version: 0.7
66
synopsis: Servant support for lucid
77
-- description:
88
homepage: http://haskell-servant.github.io/
@@ -27,7 +27,7 @@ library
2727
build-depends: base >=4.7 && <5
2828
, http-media
2929
, lucid
30-
, servant == 0.6.*
30+
, servant == 0.7.*
3131
hs-source-dirs: src
3232
default-language: Haskell2010
3333
include-dirs: include

servant-mock/servant-mock.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: servant-mock
2-
version: 0.6.1
2+
version: 0.7
33
synopsis: Derive a mock server for free from your servant API types
44
description:
55
Derive a mock server for free from your servant API types

servant-server/servant-server.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: servant-server
2-
version: 0.6.1
2+
version: 0.7
33
synopsis: A family of combinators for defining webservices APIs and serving them
44
description:
55
A family of combinators for defining webservices APIs and serving them
@@ -60,7 +60,7 @@ library
6060
, mmorph >= 1
6161
, network >= 2.6 && < 2.7
6262
, safe >= 0.3 && < 0.4
63-
, servant == 0.6.*
63+
, servant == 0.7.*
6464
, split >= 0.2 && < 0.3
6565
, string-conversions >= 0.3 && < 0.5
6666
, system-filepath >= 0.4 && < 0.5

0 commit comments

Comments
 (0)