Skip to content

Commit

Permalink
prepare for 0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
c-cube committed Jun 26, 2023
1 parent 67f4f5b commit a4ead61
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 10 deletions.
6 changes: 6 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -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

- expose `Scope.get_surrounding`
Expand Down
6 changes: 3 additions & 3 deletions dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
(source
(github imandra-ai/ocaml-opentelemetry))

(version 0.4)
(version 0.5)

(authors "the Imandra team and contributors")
(maintainers "the Imandra team and contributors")
Expand Down Expand Up @@ -33,7 +33,7 @@
(cohttp-lwt-unix :with-test)
(odoc :with-doc)
(lwt (>= "5.3"))
lwt_ppx)
(lwt_ppx (>= "2.0")))
(tags
(instrumentation tracing opentelemetry datadog lwt)))

Expand Down Expand Up @@ -70,7 +70,7 @@
(pbrt (>= 2.2))
(odoc :with-doc)
(lwt (>= "5.3"))
lwt_ppx
(lwt_ppx (>= "2.0"))
cohttp-lwt
cohttp-lwt-unix)
(synopsis "Collector client for opentelemetry, using cohttp + lwt"))
4 changes: 2 additions & 2 deletions opentelemetry-client-cohttp-lwt.opam
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "0.4"
version: "0.5"
synopsis: "Collector client for opentelemetry, using cohttp + lwt"
maintainer: ["the Imandra team and contributors"]
authors: ["the Imandra team and contributors"]
Expand All @@ -15,7 +15,7 @@ depends: [
"pbrt" {>= "2.2"}
"odoc" {with-doc}
"lwt" {>= "5.3"}
"lwt_ppx"
"lwt_ppx" {>= "2.0"}
"cohttp-lwt"
"cohttp-lwt-unix"
]
Expand Down
2 changes: 1 addition & 1 deletion opentelemetry-client-ocurl.opam
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "0.4"
version: "0.5"
synopsis: "Collector client for opentelemetry, using http + ezcurl"
maintainer: ["the Imandra team and contributors"]
authors: ["the Imandra team and contributors"]
Expand Down
2 changes: 1 addition & 1 deletion opentelemetry-cohttp-lwt.opam
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "0.4"
version: "0.5"
synopsis: "Opentelemetry tracing for Cohttp HTTP servers"
maintainer: ["the Imandra team and contributors"]
authors: ["the Imandra team and contributors"]
Expand Down
4 changes: 2 additions & 2 deletions opentelemetry-lwt.opam
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "0.4"
version: "0.5"
synopsis: "Lwt-compatible instrumentation for https://opentelemetry.io"
maintainer: ["the Imandra team and contributors"]
authors: ["the Imandra team and contributors"]
Expand All @@ -15,7 +15,7 @@ depends: [
"cohttp-lwt-unix" {with-test}
"odoc" {with-doc}
"lwt" {>= "5.3"}
"lwt_ppx"
"lwt_ppx" {>= "2.0"}
]
build: [
["dune" "subst"] {dev}
Expand Down
2 changes: 1 addition & 1 deletion opentelemetry.opam
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "0.4"
version: "0.5"
synopsis: "Instrumentation for https://opentelemetry.io"
maintainer: ["the Imandra team and contributors"]
authors: ["the Imandra team and contributors"]
Expand Down

0 comments on commit a4ead61

Please sign in to comment.