prepare for 0.8

This commit is contained in:
Simon Cruanes 2024-03-08 11:48:54 -05:00
parent 14b9f440d1
commit 267ac195ef
No known key found for this signature in database
GPG key ID: EBFFF6F283F3A2B4
8 changed files with 17 additions and 8 deletions

View file

@ -1,3 +1,12 @@
## 0.8
- feat: add dep on `hmap`, add standard keys to carry around a span context or trace id
- add semantic conventions for code and HTTP
- better debug message in curl backend
- make otel-trace a bit more lightweight
## 0.7
- add Span_link.of_span_ctx, Scope.to_span_ctx, dummy values

View file

@ -7,7 +7,7 @@
(source
(github imandra-ai/ocaml-opentelemetry))
(version 0.7)
(version 0.8)
(authors "the Imandra team and contributors")

View file

@ -1,6 +1,6 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "0.7"
version: "0.8"
synopsis: "Collector client for opentelemetry, using cohttp + lwt"
maintainer: [
"Simon Cruanes <simon.cruanes.2007@m4x.org>"

View file

@ -1,6 +1,6 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "0.7"
version: "0.8"
synopsis: "Collector client for opentelemetry, using http + ezcurl"
maintainer: [
"Simon Cruanes <simon.cruanes.2007@m4x.org>"

View file

@ -1,6 +1,6 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "0.7"
version: "0.8"
synopsis: "Opentelemetry tracing for Cohttp HTTP servers"
maintainer: [
"Simon Cruanes <simon.cruanes.2007@m4x.org>"

View file

@ -1,6 +1,6 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "0.7"
version: "0.8"
synopsis: "Lwt-compatible instrumentation for https://opentelemetry.io"
maintainer: [
"Simon Cruanes <simon.cruanes.2007@m4x.org>"

View file

@ -1,6 +1,6 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "0.7"
version: "0.8"
synopsis: "Instrumentation for https://opentelemetry.io"
maintainer: [
"Simon Cruanes <simon.cruanes.2007@m4x.org>"

View file

@ -328,7 +328,7 @@ end
(** Hmap key to carry around a {!Trace_id.t}, to remember what the current
trace is.
@since NEXT_RELEASE *)
@since 0.8 *)
let k_trace_id : Trace_id.t Hmap.key = Hmap.Key.create ()
(** Unique ID of a span. *)
@ -486,7 +486,7 @@ end
(** Hmap key to carry around a {!Span_ctx.t}, e.g. to remember what the current
parent span is.
@since NEXT_RELEASE *)
@since 0.8 *)
let k_span_ctx : Span_ctx.t Hmap.key = Hmap.Key.create ()
(** {2 Attributes and conventions} *)