Skip to content

Commit

Permalink
prepare for 0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
c-cube committed Jun 15, 2023
1 parent 088f2a5 commit ddc9cce
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 7 deletions.
9 changes: 9 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@

# 0.2

- trace-tef: additional argument to `with_setup`; env for "stdout"/"stderr"
- refactor: avoid conflicting with stdlib `Trace` module by adding sublibrary `trace.core`.
Programs that use `compiler-libs.toplevel` should use `trace.core`
directly, because using `trace` will cause linking errors.
- perf(trace-tef): improve behavior of collector under contention by
pulling all events at once in the worker

# 0.1

initial release
6 changes: 3 additions & 3 deletions dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

(name trace)
(generate_opam_files true)
(version 0.1)
(version 0.2)

(source
(github c-cube/trace))
Expand All @@ -14,7 +14,7 @@

(package
(name trace)
(synopsis "A stub for tracing/observability")
(synopsis "A stub for tracing/observability, agnostic in how data is collected")
(depends
(ocaml (>= 4.08))
dune)
Expand All @@ -23,7 +23,7 @@

(package
(name trace-tef)
(synopsis "A simple backend for trace")
(synopsis "A simple backend for trace, emitting Catapult JSON into a file")
(depends
(ocaml (>= 4.08))
(trace (= :version))
Expand Down
4 changes: 2 additions & 2 deletions trace-tef.opam
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "0.1"
synopsis: "A simple backend for trace"
version: "0.2"
synopsis: "A simple backend for trace, emitting Catapult JSON into a file"
maintainer: ["Simon Cruanes"]
authors: ["Simon Cruanes"]
license: "MIT"
Expand Down
5 changes: 3 additions & 2 deletions trace.opam
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "0.1"
synopsis: "A stub for tracing/observability"
version: "0.2"
synopsis:
"A stub for tracing/observability, agnostic in how data is collected"
maintainer: ["Simon Cruanes"]
authors: ["Simon Cruanes"]
license: "MIT"
Expand Down

0 comments on commit ddc9cce

Please sign in to comment.