Skip to content

Commit 6702e72

Browse files
committed
Release 1.4.2
1 parent b77f282 commit 6702e72

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

odoc.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
opam-version: "2.0"
22

3-
version: "dev"
3+
version: "1.4.2"
44
homepage: "http://github.com/ocaml/odoc"
55
doc: "https://github.com/ocaml/odoc#readme"
66
bug-reports: "https://github.com/ocaml/odoc/issues"

src/odoc/bin/main.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@ let () =
413413
(String.concat ~sep:", " available_subcommands)
414414
in
415415
Term.(const print_default $ const ()),
416-
Term.info ~version:"%%VERSION%%" "odoc"
416+
Term.info ~version:"1.4.2" "odoc"
417417
in
418418
match Term.eval_choice ~err:Format.err_formatter default subcommands with
419419
| `Error _ ->

src/odoc/etc/odoc.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
@charset "UTF-8";
22
/* Copyright (c) 2016 The odoc contributors. All rights reserved.
33
Distributed under the ISC license, see terms at the end of the file.
4-
%%NAME%% %%VERSION%% */
4+
odoc 1.4.2 */
55

66
/* Fonts */
77
@import url('https://fonts.googleapis.com/css?family=Fira+Mono:400,500');

src/odoc/root.ml

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

1717

1818

19-
let magic = "odoc-%%VERSION%%"
19+
let magic = "odoc-1.4.2"
2020

2121
let load file ic =
2222
let m = really_input_string ic (String.length magic) in

0 commit comments

Comments
 (0)