Skip to content

Commit 9a7b471

Browse files
committed
prepare for 0.8
1 parent f8b8f00 commit 9a7b471

File tree

9 files changed

+16
-8
lines changed

9 files changed

+16
-8
lines changed

CHANGES.md

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

2+
# 0.8
3+
4+
- add `trace.subscriber` instead of a separate library
5+
- add `trace-tef.tldrs`, to trace multiple processes easily (with external rust daemon)
6+
7+
- breaking: `trace-tef`: use `mtime.now`, not a counter, for multiproc
8+
- `trace-fuchsia`: require thread-local-storage 0.2
9+
210
# 0.7
311

412
- feat: add levels to `Trace_core`. Levels are similar to `logs` levels, to help control verbosity.

dune-project

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
(generate_opam_files true)
66

7-
(version 0.7)
7+
(version 0.8)
88

99
(source
1010
(github c-cube/ocaml-trace))

ppx_trace.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This file is generated by dune, edit dune-project instead
22
opam-version: "2.0"
3-
version: "0.7"
3+
version: "0.8"
44
synopsis: "A ppx-based preprocessor for trace"
55
maintainer: ["Simon Cruanes"]
66
authors: ["Simon Cruanes"]

src/subscriber/trace_subscriber.mli

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
It also defines a collector that needs to be installed
66
for the subscriber(s) to be called.
77
8-
@since NEXT_RELEASE
8+
@since 0.8
99
*)
1010

1111
module Callbacks = Callbacks

src/tef-tldrs/trace_tef_tldrs.mli

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ val collector : out:[ `File of string ] -> unit -> Trace_core.collector
66

77
val subscriber : out:[ `File of string ] -> unit -> Trace_subscriber.t
88
(** Make a subscriber that writes into the given output.
9-
@since NEXT_RELEASE *)
9+
@since 0.8 *)
1010

1111
type output = [ `File of string ]
1212
(** Output for tracing.

src/tef/trace_tef.mli

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ type output =
1313

1414
val subscriber : out:[< output ] -> unit -> Trace_subscriber.t
1515
(** A subscriber emitting TEF traces into [out].
16-
@since NEXT_RELEASE *)
16+
@since 0.8 *)
1717

1818
val collector : out:[< output ] -> unit -> Trace_core.collector
1919
(** Make a collector that writes into the given output.

trace-fuchsia.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This file is generated by dune, edit dune-project instead
22
opam-version: "2.0"
3-
version: "0.7"
3+
version: "0.8"
44
synopsis:
55
"A high-performance backend for trace, emitting a Fuchsia trace into a file"
66
maintainer: ["Simon Cruanes"]

trace-tef.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This file is generated by dune, edit dune-project instead
22
opam-version: "2.0"
3-
version: "0.7"
3+
version: "0.8"
44
synopsis:
55
"A simple backend for trace, emitting Catapult/TEF JSON into a file"
66
maintainer: ["Simon Cruanes"]

trace.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This file is generated by dune, edit dune-project instead
22
opam-version: "2.0"
3-
version: "0.7"
3+
version: "0.8"
44
synopsis:
55
"A stub for tracing/observability, agnostic in how data is collected"
66
maintainer: ["Simon Cruanes"]

0 commit comments

Comments
 (0)