From e51c86ad7d6cc84875fca975dba74ec54db7851b Mon Sep 17 00:00:00 2001 From: c-cube Date: Mon, 9 Jun 2025 13:11:21 +0000 Subject: [PATCH] deploy: 8779823fda9e2fd467e33bdf27d7116f90f6f470 --- cohttp-lwt/_doc-dir/CHANGES.md | 8 +++++++- cohttp-lwt/_doc-dir/README.md | 4 ++-- cohttp/_doc-dir/CHANGES.md | 8 +++++++- cohttp/_doc-dir/README.md | 4 ++-- http/_doc-dir/CHANGES.md | 8 +++++++- http/_doc-dir/README.md | 4 ++-- opentelemetry-lwt/Opentelemetry_lwt/Trace/index.html | 4 ++-- opentelemetry/Opentelemetry/Trace/index.html | 2 +- 8 files changed, 30 insertions(+), 12 deletions(-) diff --git a/cohttp-lwt/_doc-dir/CHANGES.md b/cohttp-lwt/_doc-dir/CHANGES.md index 5f70bd80..1f104bec 100644 --- a/cohttp-lwt/_doc-dir/CHANGES.md +++ b/cohttp-lwt/_doc-dir/CHANGES.md @@ -1,4 +1,10 @@ -# v6.1.0 (2025-03-03) +## v6.1.1 (2025-05-28) + +- cohttp-mirage: make client usable again -- this fixes a regression introduced + by #1080 (@Firobe, review by @edwintorok, #1110) +- rename main function on README example (@Unn4m3DD, #1097) + +## v6.1.0 (2025-03-03) - cohttp-lwt-unix: Add http/https proxy support for client requests (@art-w @MisterDA, #1080) - cohttp-mirage: Support conduit 8.0.0 (@hannesm, #1104) diff --git a/cohttp-lwt/_doc-dir/README.md b/cohttp-lwt/_doc-dir/README.md index 2a026f20..2436d5a6 100644 --- a/cohttp-lwt/_doc-dir/README.md +++ b/cohttp-lwt/_doc-dir/README.md @@ -79,7 +79,7 @@ open Lwt open Cohttp open Cohttp_lwt_unix -let body = +let main = Client.get (Uri.of_string "https://www.reddit.com/") >>= fun (resp, body) -> let code = resp |> Response.status |> Code.code_of_status in Printf.printf "Response code: %d\n" code; @@ -89,7 +89,7 @@ let body = body let () = - let body = Lwt_main.run body in + let body = Lwt_main.run main in print_endline ("Received body\n" ^ body) ``` diff --git a/cohttp/_doc-dir/CHANGES.md b/cohttp/_doc-dir/CHANGES.md index 5f70bd80..1f104bec 100644 --- a/cohttp/_doc-dir/CHANGES.md +++ b/cohttp/_doc-dir/CHANGES.md @@ -1,4 +1,10 @@ -# v6.1.0 (2025-03-03) +## v6.1.1 (2025-05-28) + +- cohttp-mirage: make client usable again -- this fixes a regression introduced + by #1080 (@Firobe, review by @edwintorok, #1110) +- rename main function on README example (@Unn4m3DD, #1097) + +## v6.1.0 (2025-03-03) - cohttp-lwt-unix: Add http/https proxy support for client requests (@art-w @MisterDA, #1080) - cohttp-mirage: Support conduit 8.0.0 (@hannesm, #1104) diff --git a/cohttp/_doc-dir/README.md b/cohttp/_doc-dir/README.md index 2a026f20..2436d5a6 100644 --- a/cohttp/_doc-dir/README.md +++ b/cohttp/_doc-dir/README.md @@ -79,7 +79,7 @@ open Lwt open Cohttp open Cohttp_lwt_unix -let body = +let main = Client.get (Uri.of_string "https://www.reddit.com/") >>= fun (resp, body) -> let code = resp |> Response.status |> Code.code_of_status in Printf.printf "Response code: %d\n" code; @@ -89,7 +89,7 @@ let body = body let () = - let body = Lwt_main.run body in + let body = Lwt_main.run main in print_endline ("Received body\n" ^ body) ``` diff --git a/http/_doc-dir/CHANGES.md b/http/_doc-dir/CHANGES.md index 5f70bd80..1f104bec 100644 --- a/http/_doc-dir/CHANGES.md +++ b/http/_doc-dir/CHANGES.md @@ -1,4 +1,10 @@ -# v6.1.0 (2025-03-03) +## v6.1.1 (2025-05-28) + +- cohttp-mirage: make client usable again -- this fixes a regression introduced + by #1080 (@Firobe, review by @edwintorok, #1110) +- rename main function on README example (@Unn4m3DD, #1097) + +## v6.1.0 (2025-03-03) - cohttp-lwt-unix: Add http/https proxy support for client requests (@art-w @MisterDA, #1080) - cohttp-mirage: Support conduit 8.0.0 (@hannesm, #1104) diff --git a/http/_doc-dir/README.md b/http/_doc-dir/README.md index 2a026f20..2436d5a6 100644 --- a/http/_doc-dir/README.md +++ b/http/_doc-dir/README.md @@ -79,7 +79,7 @@ open Lwt open Cohttp open Cohttp_lwt_unix -let body = +let main = Client.get (Uri.of_string "https://www.reddit.com/") >>= fun (resp, body) -> let code = resp |> Response.status |> Code.code_of_status in Printf.printf "Response code: %d\n" code; @@ -89,7 +89,7 @@ let body = body let () = - let body = Lwt_main.run body in + let body = Lwt_main.run main in print_endline ("Received body\n" ^ body) ``` diff --git a/opentelemetry-lwt/Opentelemetry_lwt/Trace/index.html b/opentelemetry-lwt/Opentelemetry_lwt/Trace/index.html index 7e9ea9b1..07f1297d 100644 --- a/opentelemetry-lwt/Opentelemetry_lwt/Trace/index.html +++ b/opentelemetry-lwt/Opentelemetry_lwt/Trace/index.html @@ -24,10 +24,10 @@ unit

Sync emitter.

This instructs the collector to forward the spans to some backend at a later point.

NOTE be careful not to call this inside a Gc alarm, as it can cause deadlocks.

  • deprecated use Scope.t
val add_event : Opentelemetry.Scope.t -> (unit -> Opentelemetry.Event.t) -> - unit
  • deprecated use Scope.add_event
val add_attrs : + unit
val add_attrs : Opentelemetry.Scope.t -> (unit -> Opentelemetry.key_value list) -> - unit
  • deprecated use Scope.add_attrs
val with_' : + unit
val with_' : ?force_new_trace_id:bool -> ?trace_state:string -> ?service_name:string -> diff --git a/opentelemetry/Opentelemetry/Trace/index.html b/opentelemetry/Opentelemetry/Trace/index.html index d5e9b83b..fe6b5c4d 100644 --- a/opentelemetry/Opentelemetry/Trace/index.html +++ b/opentelemetry/Opentelemetry/Trace/index.html @@ -21,7 +21,7 @@ | `String of string ]) list -> span list -> - unit

Sync emitter.

This instructs the collector to forward the spans to some backend at a later point.

NOTE be careful not to call this inside a Gc alarm, as it can cause deadlocks.

type scope = Scope.t = {
  1. trace_id : Trace_id.t;
  2. span_id : Span_id.t;
  3. mutable items : Scope.item_list;
}
  • deprecated use Scope.t
val add_event : Scope.t -> (unit -> Event.t) -> unit
  • deprecated use Scope.add_event
val add_attrs : Scope.t -> (unit -> key_value list) -> unit
  • deprecated use Scope.add_attrs
val with_' : + unit

Sync emitter.

This instructs the collector to forward the spans to some backend at a later point.

NOTE be careful not to call this inside a Gc alarm, as it can cause deadlocks.

type scope = Scope.t = {
  1. trace_id : Trace_id.t;
  2. span_id : Span_id.t;
  3. mutable items : Scope.item_list;
}
  • deprecated use Scope.t
val add_event : Scope.t -> (unit -> Event.t) -> unit
val add_attrs : Scope.t -> (unit -> key_value list) -> unit
val with_' : ?force_new_trace_id:bool -> ?trace_state:string -> ?service_name:string ->