From f6f3a444faf0665c4f1dadf5d3bbf1ed74867bb8 Mon Sep 17 00:00:00 2001 From: Thomas Gazagnaire Date: Tue, 15 Sep 2015 12:19:34 +0100 Subject: [PATCH 1/4] Add some documentation for ?version --- lib/conduit_async_ssl.mli | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/conduit_async_ssl.mli b/lib/conduit_async_ssl.mli index 1040d5f5..28320082 100644 --- a/lib/conduit_async_ssl.mli +++ b/lib/conduit_async_ssl.mli @@ -30,7 +30,10 @@ val ssl_connect : (** [ssl_listen ~crt_file ~key_file rd wr] will establish a server TLS/SSL session over an existing pair of [rd] {!Reader.t} and - [wd] {!Writer.t} Async connections. *) + [wd] {!Writer.t} Async connections. + + [version] is the version of SSL being used by the server. If not + set, it is [Ssl.Version.Tlsv1_2]. *) val ssl_listen : ?version:Ssl.Version.t -> crt_file:string -> From 6fad73f09f8723c5f09874acc3ecfcfbf6d0dd24 Mon Sep 17 00:00:00 2001 From: Thomas Gazagnaire Date: Tue, 15 Sep 2015 12:26:49 +0100 Subject: [PATCH 2/4] Update CHANGES --- CHANGES | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/CHANGES b/CHANGES index b96a1fb9..d87300d7 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,12 @@ +0.8.8 (2015-09-15) +* Expoe a new functor `Conduit_mirage.With_tcp` (#92, by @Drup) +* Expose a new functor: `Resolver_mirage.Make_with_stack` (#92, by @Drup) +* Expose `Resolver_mirage.S`, the signature for Mirage's conduit resolvers. + Resolvers now also expose their `DNS` implmentation as a submodule of + `Resolver_mirage.S` (#92, by @Drup) +* Expose a ?version arg in Conduit_async_ssl.ssl_listen, default being TLS 1.2 + (#94, by @vbmithr) + 0.8.7 (2015-08-18): * Do not ignore custom context when calling `Conduit_lwt_unix_ssl.accept` (reported by @jrb467 in #88) From 9a10dd85f9ec1ae20cd543becfd8f0d0f974346a Mon Sep 17 00:00:00 2001 From: Thomas Gazagnaire Date: Tue, 15 Sep 2015 12:27:04 +0100 Subject: [PATCH 3/4] Bump version --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index 1e9b46b2..6201b5f7 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.8.7 +0.8.8 From 5043d860b631b45006ac46e3e9bcc568c888f1f2 Mon Sep 17 00:00:00 2001 From: Thomas Gazagnaire Date: Tue, 15 Sep 2015 12:49:49 +0100 Subject: [PATCH 4/4] Improve CHANGES (thx to @avsm) --- CHANGES | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/CHANGES b/CHANGES index d87300d7..3fdb99e2 100644 --- a/CHANGES +++ b/CHANGES @@ -1,9 +1,10 @@ 0.8.8 (2015-09-15) -* Expoe a new functor `Conduit_mirage.With_tcp` (#92, by @Drup) -* Expose a new functor: `Resolver_mirage.Make_with_stack` (#92, by @Drup) -* Expose `Resolver_mirage.S`, the signature for Mirage's conduit resolvers. - Resolvers now also expose their `DNS` implmentation as a submodule of - `Resolver_mirage.S` (#92, by @Drup) +* Expose a new functor `Conduit_mirage.With_tcp` (#92, by @Drup) +* Expose a new functor: `Resolver_mirage.Make_with_stack` to build a DNS + resolver using an existing network stack (#92, by @Drup) +* Expose `Resolver_mirage.S`, the signature for Mirage's conduit resolvers than + can perform DNS lookups. These resolvers now expose their `DNS` implmentation + as a submodule (#92, by @Drup) * Expose a ?version arg in Conduit_async_ssl.ssl_listen, default being TLS 1.2 (#94, by @vbmithr)