File tree Expand file tree Collapse file tree 3 files changed +21
-15
lines changed Expand file tree Collapse file tree 3 files changed +21
-15
lines changed Original file line number Diff line number Diff line change
1
+ # Revision history for HaskellNet-SSL
2
+
3
+ ## 0.4.0.0 -- 2025-01-07
4
+
5
+ - drop support for connection in favour of crypton-connection
6
+ - compatibility with GHCs up to ghc 9.8 (bump base and bytestring)
7
+ - fix example
8
+ - add tested-with stanza
Original file line number Diff line number Diff line change 1
1
name : HaskellNet-SSL
2
2
synopsis : Helpers to connect to SSL/TLS mail servers with HaskellNet
3
- version : 0.3.4.4
3
+ version : 0.4.0.0
4
4
description : This package ties together the HaskellNet and connection
5
5
packages to make it easy to open IMAP and SMTP connections
6
6
over SSL.
@@ -9,12 +9,12 @@ tested-with: GHC ==9.4.8 || ==9.6.5 || ==9.8.2
9
9
license : BSD3
10
10
license-file : LICENSE
11
11
author : Daniel P. Wright
12
-
12
+
13
13
copyright : (c) 2013 Daniel P. Wright
14
14
category : Network
15
15
build-type : Simple
16
- cabal-version : >= 1.10
17
- data- files : README.md
16
+ cabal-version : 1.18
17
+ extra-doc- files : README.md, CHANGELOG .md
18
18
19
19
flag network-bsd
20
20
description : Get Network.BSD from the network-bsd package
@@ -35,7 +35,7 @@ library
35
35
other-modules : Network.HaskellNet.SSL.Internal
36
36
build-depends : base >= 4 && < 5 ,
37
37
HaskellNet >= 0.3 && < 0.7 ,
38
- crypton-connection >= 0.3.1 ,
38
+ crypton-connection >= 0.3.1 && < 0.5 ,
39
39
bytestring >= 0.9 && < 0.13 ,
40
40
data-default >= 0.2 && < 0.8
41
41
if flag(network-bsd)
@@ -48,10 +48,9 @@ executable HaskellNet-SSL-example
48
48
hs-source-dirs : examples
49
49
main-is : gmail.hs
50
50
other-modules :
51
- build-depends :
52
- base < 5
53
- , HaskellNet-SSL
54
- , HaskellNet
55
- , bytestring
51
+ build-depends : base,
52
+ HaskellNet-SSL,
53
+ HaskellNet,
54
+ bytestring
56
55
57
56
default-language : Haskell2010
Original file line number Diff line number Diff line change 1
- HaskellNet-SSL
2
- --------------
1
+ # HaskellNet-SSL
3
2
4
- [ ![ Build Status ] ( https://travis-ci.org /dpwright/HaskellNet-SSL. svg?branch=master )] ( https://travis-ci.org /dpwright/HaskellNet-SSL )
3
+ [ ![ haskell ci ] ( https://github.com /dpwright/HaskellNet-SSL/actions/workflows/haskell.yml/badge. svg )] ( https://github.com /dpwright/HaskellNet-SSL/actions/workflows/haskell.yml )
5
4
6
5
This package ties together the excellent [ HaskellNet] [ HaskellNet ] and
7
- [ connection] [ connection ] packages to make it easy to open IMAP and SMTP
6
+ [ crypton- connection] [ crypton- connection] packages to make it easy to open IMAP and SMTP
8
7
connections over SSL. This is a simple "glue" library; all credit for a)
9
8
connecting to IMAP/SMTP servers and b) making an SSL connection goes to the
10
9
aforementioned libraries.
11
10
12
11
[ HaskellNet ] : https://github.com/jtdaugherty/HaskellNet
13
- [ connection ] : https://github.com/vincenthz/hs -connection
12
+ [ crypton- connection] : https://github.com/kazu-yamamoto/crypton -connection
You can’t perform that action at this time.
0 commit comments