Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit b853de6

Browse files
committedOct 16, 2018
Release 1.3.0
1 parent 488e667 commit b853de6

File tree

6 files changed

+4
-15
lines changed

6 files changed

+4
-15
lines changed
 

‎odoc.opam

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

3-
version: "dev"
3+
version: "1.3.0"
44
homepage: "http://github.com/ocaml-doc/odoc"
55
doc: "https://github.com/ocaml/odoc#readme"
66
bug-reports: "https://github.com/ocaml-doc/odoc/issues"
@@ -24,15 +24,6 @@ depends: [
2424
"fpath" {build}
2525
"result" {build}
2626
"tyxml" {build & >= "4.0.0"}
27-
28-
# Development dependencies. These should be removed in opam files sent to the
29-
# opam repo.
30-
"alcotest" {>= "0.8.3"}
31-
"bisect_ppx" {>= "1.3.0"}
32-
"markup" {>= "0.8.0"}
33-
"lambdasoup"
34-
"ocamlfind"
35-
"sexplib" {>= "113.33.00"}
3627
]
3728

3829
build: [

‎src/html/dune

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
(library
22
(name html)
3-
(preprocess (pps bisect_ppx -conditional))
43
(libraries model tyxml))

‎src/odoc/bin/main.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -398,7 +398,7 @@ let () =
398398
(String.concat ~sep:", " available_subcommands)
399399
in
400400
Term.(const print_default $ const ()),
401-
Term.info ~version:"%%VERSION%%" "odoc"
401+
Term.info ~version:"1.3.0" "odoc"
402402
in
403403
match Term.eval_choice ~err:Format.err_formatter default subcommands with
404404
| `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 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.3.0 */
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.3.0"
2020

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

‎src/parser/dune

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,4 @@
22

33
(library
44
(name parser_)
5-
(preprocess (pps bisect_ppx -conditional))
65
(libraries model compat astring))

0 commit comments

Comments
 (0)
Please sign in to comment.