Skip to content

Commit

Permalink
Release 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
aantron committed Oct 16, 2018
1 parent 488e667 commit b853de6
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 15 deletions.
11 changes: 1 addition & 10 deletions odoc.opam
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
opam-version: "1.2"

version: "dev"
version: "1.3.0"
homepage: "http://github.com/ocaml-doc/odoc"
doc: "https://github.com/ocaml/odoc#readme"
bug-reports: "https://github.com/ocaml-doc/odoc/issues"
Expand All @@ -24,15 +24,6 @@ depends: [
"fpath" {build}
"result" {build}
"tyxml" {build & >= "4.0.0"}

# Development dependencies. These should be removed in opam files sent to the
# opam repo.
"alcotest" {>= "0.8.3"}
"bisect_ppx" {>= "1.3.0"}
"markup" {>= "0.8.0"}
"lambdasoup"
"ocamlfind"
"sexplib" {>= "113.33.00"}
]

build: [
Expand Down
1 change: 0 additions & 1 deletion src/html/dune
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
(library
(name html)
(preprocess (pps bisect_ppx -conditional))
(libraries model tyxml))
2 changes: 1 addition & 1 deletion src/odoc/bin/main.ml
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ let () =
(String.concat ~sep:", " available_subcommands)
in
Term.(const print_default $ const ()),
Term.info ~version:"%%VERSION%%" "odoc"
Term.info ~version:"1.3.0" "odoc"
in
match Term.eval_choice ~err:Format.err_formatter default subcommands with
| `Error _ ->
Expand Down
2 changes: 1 addition & 1 deletion src/odoc/etc/odoc.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
@charset "UTF-8";
/* Copyright (c) 2016 Daniel C. Bünzli. All rights reserved.
Distributed under the ISC license, see terms at the end of the file.
%%NAME%% %%VERSION%% */
odoc 1.3.0 */

/* Fonts */
@import url('https://fonts.googleapis.com/css?family=Fira+Mono:400,500');
Expand Down
2 changes: 1 addition & 1 deletion src/odoc/root.ml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@



let magic = "odoc-%%VERSION%%"
let magic = "odoc-1.3.0"

let load file ic =
let m = really_input_string ic (String.length magic) in
Expand Down
1 change: 0 additions & 1 deletion src/parser/dune
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,4 @@

(library
(name parser_)
(preprocess (pps bisect_ppx -conditional))
(libraries model compat astring))

0 comments on commit b853de6

Please sign in to comment.