prepare for 0.5

This commit is contained in:
Simon Cruanes 2023-06-26 13:23:06 -04:00
parent 67f4f5b9cc
commit a4ead618c5
No known key found for this signature in database
GPG key ID: EBFFF6F283F3A2B4
7 changed files with 16 additions and 10 deletions

View file

@ -1,4 +1,10 @@
## 0.5
- new implementation for ocurl backend, using ezcurl and queues
- refactor lwt: Use `try%lwt` over `Lwt.catch`
- add `opentelemetry.trace` (optional, depends on `trace`)
## 0.4 ## 0.4
- expose `Scope.get_surrounding` - expose `Scope.get_surrounding`

View file

@ -4,7 +4,7 @@
(source (source
(github imandra-ai/ocaml-opentelemetry)) (github imandra-ai/ocaml-opentelemetry))
(version 0.4) (version 0.5)
(authors "the Imandra team and contributors") (authors "the Imandra team and contributors")
(maintainers "the Imandra team and contributors") (maintainers "the Imandra team and contributors")
@ -33,7 +33,7 @@
(cohttp-lwt-unix :with-test) (cohttp-lwt-unix :with-test)
(odoc :with-doc) (odoc :with-doc)
(lwt (>= "5.3")) (lwt (>= "5.3"))
lwt_ppx) (lwt_ppx (>= "2.0")))
(tags (tags
(instrumentation tracing opentelemetry datadog lwt))) (instrumentation tracing opentelemetry datadog lwt)))
@ -70,7 +70,7 @@
(pbrt (>= 2.2)) (pbrt (>= 2.2))
(odoc :with-doc) (odoc :with-doc)
(lwt (>= "5.3")) (lwt (>= "5.3"))
lwt_ppx (lwt_ppx (>= "2.0"))
cohttp-lwt cohttp-lwt
cohttp-lwt-unix) cohttp-lwt-unix)
(synopsis "Collector client for opentelemetry, using cohttp + lwt")) (synopsis "Collector client for opentelemetry, using cohttp + lwt"))

View file

@ -1,6 +1,6 @@
# This file is generated by dune, edit dune-project instead # This file is generated by dune, edit dune-project instead
opam-version: "2.0" opam-version: "2.0"
version: "0.4" version: "0.5"
synopsis: "Collector client for opentelemetry, using cohttp + lwt" synopsis: "Collector client for opentelemetry, using cohttp + lwt"
maintainer: ["the Imandra team and contributors"] maintainer: ["the Imandra team and contributors"]
authors: ["the Imandra team and contributors"] authors: ["the Imandra team and contributors"]
@ -15,7 +15,7 @@ depends: [
"pbrt" {>= "2.2"} "pbrt" {>= "2.2"}
"odoc" {with-doc} "odoc" {with-doc}
"lwt" {>= "5.3"} "lwt" {>= "5.3"}
"lwt_ppx" "lwt_ppx" {>= "2.0"}
"cohttp-lwt" "cohttp-lwt"
"cohttp-lwt-unix" "cohttp-lwt-unix"
] ]

View file

@ -1,6 +1,6 @@
# This file is generated by dune, edit dune-project instead # This file is generated by dune, edit dune-project instead
opam-version: "2.0" opam-version: "2.0"
version: "0.4" version: "0.5"
synopsis: "Collector client for opentelemetry, using http + ezcurl" synopsis: "Collector client for opentelemetry, using http + ezcurl"
maintainer: ["the Imandra team and contributors"] maintainer: ["the Imandra team and contributors"]
authors: ["the Imandra team and contributors"] authors: ["the Imandra team and contributors"]

View file

@ -1,6 +1,6 @@
# This file is generated by dune, edit dune-project instead # This file is generated by dune, edit dune-project instead
opam-version: "2.0" opam-version: "2.0"
version: "0.4" version: "0.5"
synopsis: "Opentelemetry tracing for Cohttp HTTP servers" synopsis: "Opentelemetry tracing for Cohttp HTTP servers"
maintainer: ["the Imandra team and contributors"] maintainer: ["the Imandra team and contributors"]
authors: ["the Imandra team and contributors"] authors: ["the Imandra team and contributors"]

View file

@ -1,6 +1,6 @@
# This file is generated by dune, edit dune-project instead # This file is generated by dune, edit dune-project instead
opam-version: "2.0" opam-version: "2.0"
version: "0.4" version: "0.5"
synopsis: "Lwt-compatible instrumentation for https://opentelemetry.io" synopsis: "Lwt-compatible instrumentation for https://opentelemetry.io"
maintainer: ["the Imandra team and contributors"] maintainer: ["the Imandra team and contributors"]
authors: ["the Imandra team and contributors"] authors: ["the Imandra team and contributors"]
@ -15,7 +15,7 @@ depends: [
"cohttp-lwt-unix" {with-test} "cohttp-lwt-unix" {with-test}
"odoc" {with-doc} "odoc" {with-doc}
"lwt" {>= "5.3"} "lwt" {>= "5.3"}
"lwt_ppx" "lwt_ppx" {>= "2.0"}
] ]
build: [ build: [
["dune" "subst"] {dev} ["dune" "subst"] {dev}

View file

@ -1,6 +1,6 @@
# This file is generated by dune, edit dune-project instead # This file is generated by dune, edit dune-project instead
opam-version: "2.0" opam-version: "2.0"
version: "0.4" version: "0.5"
synopsis: "Instrumentation for https://opentelemetry.io" synopsis: "Instrumentation for https://opentelemetry.io"
maintainer: ["the Imandra team and contributors"] maintainer: ["the Imandra team and contributors"]
authors: ["the Imandra team and contributors"] authors: ["the Imandra team and contributors"]