Skip to content

Commit e457a3c

Browse files
committed
Bumped versions: typed-protocols-1.0, typed-protocols-doc-0.2
Also simplified dependency constraints.
1 parent c02ceeb commit e457a3c

File tree

2 files changed

+9
-11
lines changed

2 files changed

+9
-11
lines changed

typed-protocols-doc/typed-protocols-doc.cabal

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 3.0
22
name: typed-protocols-doc
3-
version: 0.1.0.0
3+
version: 0.2.0.0
44
synopsis: Derive documentation from typed-protocols source code
55
-- description:
66
license: Apache-2.0
@@ -35,7 +35,6 @@ library
3535
-- other-modules:
3636
-- other-extensions:
3737
build-depends: base >=4.14.0.0 && <5
38-
3938
, aeson >=2.0 && <2.3
4039
, base64-bytestring >=1.2.1.0 && <1.3
4140
, blaze-html >=0.9.1.2 && <0.10
@@ -54,14 +53,13 @@ library
5453
, th-abstraction >=0.6.0.0 && <0.8
5554
, time >=1.12 && <1.14
5655
, serdoc-core
57-
, typed-protocols
56+
, typed-protocols ^>= 1.0
5857
hs-source-dirs: src
5958
default-language: Haskell2010
6059

6160
executable typed-protocols-doc-demo
6261
import: warnings
6362
default-language: Haskell2010
64-
type: exitcode-stdio-1.0
6563
hs-source-dirs: demo
6664
main-is: Main.hs
6765
other-modules: DemoProtocol

typed-protocols/typed-protocols.cabal

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 3.4
22
name: typed-protocols
3-
version: 0.4.0.0
3+
version: 1.0.0.0
44
synopsis: A framework for strongly typed protocols
55
-- description:
66
license: Apache-2.0
@@ -34,7 +34,7 @@ library
3434
, TypeFamilies
3535
, TypeOperators
3636
, BangPatterns
37-
build-depends: base,
37+
build-depends: base >=4.12 && <4.22,
3838
io-classes:io-classes ^>= 1.7,
3939
singletons >= 3.0
4040

@@ -53,7 +53,7 @@ library cborg
5353
visibility: public
5454
exposed-modules: Network.TypedProtocol.Codec.CBOR
5555

56-
build-depends: base >=4.12 && <4.22,
56+
build-depends: base,
5757
bytestring >=0.10 && <0.13,
5858
cborg >=0.2.1 && <0.3,
5959
singletons,
@@ -92,7 +92,7 @@ library stateful
9292
, BangPatterns
9393
default-extensions: ImportQualifiedPost
9494
build-depends: base,
95-
singletons >= 3.0,
95+
singletons,
9696
io-classes:io-classes,
9797
typed-protocols:typed-protocols
9898

@@ -111,9 +111,9 @@ library stateful-cborg
111111
visibility: public
112112
exposed-modules: Network.TypedProtocol.Stateful.Codec.CBOR
113113

114-
build-depends: base >=4.12 && <4.22,
115-
bytestring >=0.10 && <0.13,
116-
cborg >=0.2.1 && <0.3,
114+
build-depends: base,
115+
bytestring,
116+
cborg,
117117
singletons,
118118

119119
io-classes:io-classes,

0 commit comments

Comments
 (0)