Skip to content

Commit cc8e822

Browse files
committedOct 23, 2018
Prepare for 0.2.1
base constraint on 0.2.0 is too constraining for wormhole-client
1 parent 499c77c commit cc8e822

File tree

4 files changed

+13
-7
lines changed

4 files changed

+13
-7
lines changed
 

‎CHANGES.rst

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
0.2.1 (October 23 2018)
2+
=======================
3+
4+
* Loosened base version constraint
5+
16
0.2.0 (October 23 2018)
27
=======================
38

‎doc/release.rst

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ Steps
1414
#. Bump version in package.yaml according to `PVP`_
1515
#. Update any other `package.yaml metadata`_ that needs it
1616
#. Run hpack
17+
#. Update ``CHANGES.rst``
1718
#. Commit changes
1819
#. Generate sdist (ignore the warning about running "configure")::
1920
cabal sdist

‎magic-wormhole.cabal

+5-5
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
--
33
-- see: https://github.com/sol/hpack
44
--
5-
-- hash: 70e0d0470150c88f241234f7c12f2f2e92a2dcc939f84e6da5db4c8ba17a06a5
5+
-- hash: c3ace4c817265fed08798ca9d75f3f34218ace8530d9ee3a27378b3ca1a1d844
66

77
name: magic-wormhole
8-
version: 0.2.0
8+
version: 0.2.1
99
synopsis: Interact with Magic Wormhole
1010
description: Magic Wormhole is a scheme to get things from one computer to another,
1111
safely.
@@ -39,7 +39,7 @@ library
3939
ghc-options: -Wall -Werror=incomplete-patterns
4040
build-depends:
4141
aeson
42-
, base ==4.9.*
42+
, base >=4.6 && <=4.12
4343
, bytestring
4444
, containers
4545
, cryptonite
@@ -79,7 +79,7 @@ executable hocus-pocus
7979
ghc-options: -Wall -Werror=incomplete-patterns
8080
build-depends:
8181
aeson
82-
, base ==4.9.*
82+
, base >=4.6 && <=4.12
8383
, magic-wormhole
8484
, optparse-applicative
8585
, protolude >=0.2
@@ -96,7 +96,7 @@ test-suite tasty
9696
ghc-options: -Wall -Werror=incomplete-patterns
9797
build-depends:
9898
aeson
99-
, base ==4.9.*
99+
, base >=4.6 && <=4.12
100100
, bytestring
101101
, hedgehog
102102
, magic-wormhole

‎package.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: magic-wormhole
2-
version: 0.2.0
2+
version: 0.2.1
33
synopsis: Interact with Magic Wormhole
44
description: |
55
Magic Wormhole is a scheme to get things from one computer to another,
@@ -24,7 +24,7 @@ default-extensions:
2424
- TypeApplications
2525

2626
dependencies:
27-
- base == 4.9.*
27+
- base >= 4.6 && <= 4.12
2828
- protolude >= 0.2
2929

3030
library:

0 commit comments

Comments
 (0)
Please sign in to comment.