Skip to content

Commit 6a76971

Browse files
committed
Release 1.2.0
1 parent b5f5c15 commit 6a76971

File tree

5 files changed

+5
-4
lines changed

5 files changed

+5
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
odoc — An OCaml API documentation tool
22
--------------------------------------
3-
%%VERSION%%
3+
v1.2.0
44

55
`odoc` is an OCaml API documentation tool
66

bin/main.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ let () =
325325
(String.concat ~sep:", " available_subcommands)
326326
in
327327
Term.(const print_default $ const ()),
328-
Term.info ~version:"%%VERSION%%" "odoc"
328+
Term.info ~version:"1.2.0" "odoc"
329329
in
330330
match Term.eval_choice ~err:Format.err_formatter default subcommands with
331331
| `Error _ ->

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 Daniel C. Bünzli. All rights reserved.
33
Distributed under the ISC license, see terms at the end of the file.
4-
%%NAME%% %%VERSION%% */
4+
odoc 1.2.0 */
55

66
/* Reset a few things. */
77

lib/root.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ end
122122

123123
module Table = Hashtbl.Make(T)
124124

125-
let magic = "odoc-%%VERSION%%"
125+
let magic = "odoc-1.2.0"
126126

127127
let load file ic =
128128
let m = really_input_string ic (String.length magic) in

odoc.opam

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
version: "1.2.0"
12
opam-version: "1.2"
23
name: "odoc"
34
author: "Thomas Refis <[email protected]>"

0 commit comments

Comments
 (0)