Skip to content

Commit ddc9cce

Browse files
committed
prepare for 0.2
1 parent 088f2a5 commit ddc9cce

File tree

4 files changed

+17
-7
lines changed

4 files changed

+17
-7
lines changed

CHANGES.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,13 @@
11

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

413
initial release

dune-project

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
(name trace)
44
(generate_opam_files true)
5-
(version 0.1)
5+
(version 0.2)
66

77
(source
88
(github c-cube/trace))
@@ -14,7 +14,7 @@
1414

1515
(package
1616
(name trace)
17-
(synopsis "A stub for tracing/observability")
17+
(synopsis "A stub for tracing/observability, agnostic in how data is collected")
1818
(depends
1919
(ocaml (>= 4.08))
2020
dune)
@@ -23,7 +23,7 @@
2323

2424
(package
2525
(name trace-tef)
26-
(synopsis "A simple backend for trace")
26+
(synopsis "A simple backend for trace, emitting Catapult JSON into a file")
2727
(depends
2828
(ocaml (>= 4.08))
2929
(trace (= :version))

trace-tef.opam

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This file is generated by dune, edit dune-project instead
22
opam-version: "2.0"
3-
version: "0.1"
4-
synopsis: "A simple backend for trace"
3+
version: "0.2"
4+
synopsis: "A simple backend for trace, emitting Catapult JSON into a file"
55
maintainer: ["Simon Cruanes"]
66
authors: ["Simon Cruanes"]
77
license: "MIT"

trace.opam

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
# This file is generated by dune, edit dune-project instead
22
opam-version: "2.0"
3-
version: "0.1"
4-
synopsis: "A stub for tracing/observability"
3+
version: "0.2"
4+
synopsis:
5+
"A stub for tracing/observability, agnostic in how data is collected"
56
maintainer: ["Simon Cruanes"]
67
authors: ["Simon Cruanes"]
78
license: "MIT"

0 commit comments

Comments
 (0)