Stéphane Glondu pushed to branch master at Debian OCaml Maintainers / tophide
Commits: 63061adf by Stephane Glondu at 2025-02-02T01:14:19+01:00 New upstream version 1.1.0 - - - - - 25d269ce by Stephane Glondu at 2025-02-02T01:14:20+01:00 Update upstream source from tag 'upstream/1.1.0' Update to upstream version '1.1.0' with Debian dir 7c0decb2baaba86b0446fa8c3370832f124d674a - - - - - fc1aeaa3 by Stephane Glondu at 2025-02-02T01:14:26+01:00 New upstream release - - - - - 42cf0f73 by Stephane Glondu at 2025-02-02T01:17:07+01:00 Update changelog and prepare upload to unstable - - - - - 2 changed files: - debian/changelog - tophide.ml Changes: ===================================== debian/changelog ===================================== @@ -1,3 +1,10 @@ +tophide (1.1.0-1) unstable; urgency=medium + + * Team upload + * New upstream release (Closes: #1093111) + + -- Stéphane Glondu <[email protected]> Sun, 02 Feb 2025 01:17:02 +0100 + tophide (1.0.4-5) unstable; urgency=medium * Team upload ===================================== tophide.ml ===================================== @@ -10,17 +10,17 @@ open Outcometree type env = { print_out_class_type : - Format.formatter -> out_class_type -> unit; + Format_doc.formatter -> out_class_type -> unit; print_out_module_type : - Format.formatter -> out_module_type -> unit; + Format_doc.formatter -> out_module_type -> unit; print_out_phrase : Format.formatter -> out_phrase -> unit; print_out_sig_item : - Format.formatter -> out_sig_item -> unit; + Format_doc.formatter -> out_sig_item -> unit; print_out_signature : - Format.formatter -> out_sig_item list -> unit; + Format_doc.formatter -> out_sig_item list -> unit; print_out_type : - Format.formatter -> out_type -> unit; + Format_doc.formatter -> out_type -> unit; print_out_value : Format.formatter -> out_value -> unit; } @@ -97,16 +97,10 @@ let show () = load_env default_env let _ = (* Add "#hide" directive: *) - Hashtbl.add - directive_table - "hide" - (Directive_none hide); + add_directive "hide" (Directive_none hide) { section = ""; doc = "" }; (* Add "#show" directive: *) - Hashtbl.add - directive_table - "show" - (Directive_none show); + add_directive "show" (Directive_none show) { section = ""; doc = "" }; (* Enter "hide" mode upon loading *) hide () View it on GitLab: https://salsa.debian.org/ocaml-team/tophide/-/compare/bac083ffa77897255dd40094e0dfc51eda8b15ce...42cf0f73083918a3a83e1673f3ddac1833fbd4d3 -- View it on GitLab: https://salsa.debian.org/ocaml-team/tophide/-/compare/bac083ffa77897255dd40094e0dfc51eda8b15ce...42cf0f73083918a3a83e1673f3ddac1833fbd4d3 You're receiving this email because of your account on salsa.debian.org.

