Skip to content

Commit

Permalink
allow newer tls versions, add changes for 3.10.5
Browse files Browse the repository at this point in the history
  • Loading branch information
hannesm committed Oct 9, 2021
1 parent f69d727 commit f7833c1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### v3.10.5 (2021-10-09)

- Allow tls-mirage 0.14 and 0.15 series (@hannesm)

### v3.10.4 (2021-04-20)

- Allow mirage-crypto-rng-mirage 0.10 (@hannesm)
Expand Down
2 changes: 1 addition & 1 deletion lib/mirage_impl_conduit.ml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ let tls random = impl @@ object
method! deps = [ abstract random ]
method! packages =
Mirage_key.pure [
package ~min:"0.13.0" ~max:"0.14.0" "tls-mirage"; pkg]
package ~min:"0.13.0" ~max:"0.16.0" "tls-mirage"; pkg]
method! connect _i _ = function
| [ stack; _random ] -> Fmt.strf "Lwt.return %s@;" stack
| _ -> failwith (connect_err "tls_conduit" 1)
Expand Down

0 comments on commit f7833c1

Please sign in to comment.