Skip to content

Commit

Permalink
Use {= 0.1.1} instead of {>= 0.1}
Browse files Browse the repository at this point in the history
  • Loading branch information
wlitwin committed Sep 2, 2021
1 parent b0b763c commit 12fd65f
Show file tree
Hide file tree
Showing 11 changed files with 44 additions and 44 deletions.
44 changes: 22 additions & 22 deletions dune-project
Expand Up @@ -19,31 +19,31 @@
(synopsis "Javascript implementation of the font interface for Graphv")
(depends
(ppx_expect (and (>= v0.14.1) :with-test))
(graphv_font (>= 0.1))
(graphv_font (= 0.1.1))
(js_of_ocaml-ppx (>= 3.9.0))
(js_of_ocaml (>= 3.9.0))
(graphv_webgl_impl (>= 0.1))
(graphv_core_lib (>= 0.1))))
(graphv_webgl_impl (= 0.1.1))
(graphv_core_lib (= 0.1.1))))
(package
(name graphv_font)
(synopsis "Functor for generating the Graphv font library")
(depends
(ppx_expect (and (>= v0.14.1) :with-test))
(graphv_core_lib (>= 0.1))))
(graphv_core_lib (= 0.1.1))))
(package
(name graphv_font_stb_truetype)
(synopsis "STB truetype implementation of the font interface for Graphv")
(depends
(ppx_expect (and (>= v0.14.1) :with-test))
(stb_truetype (>= 0.6))
(graphv_font (>= 0.1))
(graphv_core_lib (>= 0.1))))
(graphv_font (= 0.1.1))
(graphv_core_lib (= 0.1.1))))
(package
(name graphv_core)
(synopsis "Functor for creating a new Graphv library based on a font render and backend renderer")
(depends
(ppx_expect (and (>= v0.14.1) :with-test))
(graphv_core_lib (>= 0.1))
(graphv_core_lib (= 0.1.1))
)
)
(package
Expand All @@ -53,7 +53,7 @@
(depends
(ppx_expect (and (>= v0.14.1) :with-test))
(conf-gles2 (>= 1))
(graphv_core_lib (>= 0.1))))
(graphv_core_lib (= 0.1.1))))
(package
(name graphv_webgl_impl)
(synopsis
Expand All @@ -62,39 +62,39 @@
(ppx_expect (and (>= v0.14.1) :with-test))
(js_of_ocaml-ppx (>= 3.9.0))
(js_of_ocaml (>= 3.9.0))
(graphv_core_lib (>= 0.1))))
(graphv_core_lib (= 0.1.1))))
(package
(name graphv_gles2)
(synopsis "Functor for creating a Graphv renderer based on GLES2")
(depends
(ppx_expect (and (>= v0.14.1) :with-test))
(graphv_core_lib (>= 0.1))))
(graphv_core_lib (= 0.1.1))))
(package
(name graphv_gles2_native)
(synopsis "Full version of the Graphv library based on native GLES2")
(depends
(ppx_expect (and (>= v0.14.1) :with-test))
(graphv_font (>= 0.1))
(graphv_font_stb_truetype (>= 0.1))
(graphv_gles2_native_impl (>= 0.1))
(graphv_gles2 (>= 0.1))
(graphv_core (>= 0.1))
(graphv_font (= 0.1.1))
(graphv_font_stb_truetype (= 0.1.1))
(graphv_gles2_native_impl (= 0.1.1))
(graphv_gles2 (= 0.1.1))
(graphv_core (= 0.1.1))
))
(package
(name graphv_webgl)
(synopsis "Full version of the Graphv library based on WebGL")
(depends
(ppx_expect (and (>= v0.14.1) :with-test))
(graphv_font (>= 0.1))
(graphv_font_js (>= 0.1))
(graphv_webgl_impl (>= 0.1))
(graphv_gles2 (>= 0.1))
(graphv_core (>= 0.1))))
(graphv_font (= 0.1.1))
(graphv_font_js (= 0.1.1))
(graphv_webgl_impl (= 0.1.1))
(graphv_gles2 (= 0.1.1))
(graphv_core (= 0.1.1))))
(package
(name graphv)
(synopsis "Top_level graphv package, includes all dependencies")
(depends
(ppx_expect (and (>= v0.14.1) :with-test))
(graphv_gles2_native (>= 0.1))
(graphv_webgl (>= 0.1))
(graphv_gles2_native (= 0.1.1))
(graphv_webgl (= 0.1.1))
))
4 changes: 2 additions & 2 deletions graphv.opam
Expand Up @@ -11,8 +11,8 @@ bug-reports: "https://github.com/wlitwin/graphv/issues"
depends: [
"dune" {>= "2.8"}
"ppx_expect" {>= "v0.14.1" & with-test}
"graphv_gles2_native" {>= "0.1"}
"graphv_webgl" {>= "0.1"}
"graphv_gles2_native" {= "0.1.1"}
"graphv_webgl" {= "0.1.1"}
"odoc" {with-doc}
]
build: [
Expand Down
2 changes: 1 addition & 1 deletion graphv_core.opam
Expand Up @@ -12,7 +12,7 @@ bug-reports: "https://github.com/wlitwin/graphv/issues"
depends: [
"dune" {>= "2.8"}
"ppx_expect" {>= "v0.14.1" & with-test}
"graphv_core_lib" {>= "0.1"}
"graphv_core_lib" {= "0.1.1"}
"odoc" {with-doc}
]
build: [
Expand Down
2 changes: 1 addition & 1 deletion graphv_font.opam
Expand Up @@ -11,7 +11,7 @@ bug-reports: "https://github.com/wlitwin/graphv/issues"
depends: [
"dune" {>= "2.8"}
"ppx_expect" {>= "v0.14.1" & with-test}
"graphv_core_lib" {>= "0.1"}
"graphv_core_lib" {= "0.1.1"}
"odoc" {with-doc}
]
build: [
Expand Down
6 changes: 3 additions & 3 deletions graphv_font_js.opam
Expand Up @@ -11,11 +11,11 @@ bug-reports: "https://github.com/wlitwin/graphv/issues"
depends: [
"dune" {>= "2.8"}
"ppx_expect" {>= "v0.14.1" & with-test}
"graphv_font" {>= "0.1"}
"graphv_font" {= "0.1.1"}
"js_of_ocaml-ppx" {>= "3.9.0"}
"js_of_ocaml" {>= "3.9.0"}
"graphv_webgl_impl" {>= "0.1"}
"graphv_core_lib" {>= "0.1"}
"graphv_webgl_impl" {= "0.1.1"}
"graphv_core_lib" {= "0.1.1"}
"odoc" {with-doc}
]
build: [
Expand Down
4 changes: 2 additions & 2 deletions graphv_font_stb_truetype.opam
Expand Up @@ -12,8 +12,8 @@ depends: [
"dune" {>= "2.8"}
"ppx_expect" {>= "v0.14.1" & with-test}
"stb_truetype" {>= "0.6"}
"graphv_font" {>= "0.1"}
"graphv_core_lib" {>= "0.1"}
"graphv_font" {= "0.1.1"}
"graphv_core_lib" {= "0.1.1"}
"odoc" {with-doc}
]
build: [
Expand Down
2 changes: 1 addition & 1 deletion graphv_gles2.opam
Expand Up @@ -11,7 +11,7 @@ bug-reports: "https://github.com/wlitwin/graphv/issues"
depends: [
"dune" {>= "2.8"}
"ppx_expect" {>= "v0.14.1" & with-test}
"graphv_core_lib" {>= "0.1"}
"graphv_core_lib" {= "0.1.1"}
"odoc" {with-doc}
]
build: [
Expand Down
10 changes: 5 additions & 5 deletions graphv_gles2_native.opam
Expand Up @@ -11,11 +11,11 @@ bug-reports: "https://github.com/wlitwin/graphv/issues"
depends: [
"dune" {>= "2.8"}
"ppx_expect" {>= "v0.14.1" & with-test}
"graphv_font" {>= "0.1"}
"graphv_font_stb_truetype" {>= "0.1"}
"graphv_gles2_native_impl" {>= "0.1"}
"graphv_gles2" {>= "0.1"}
"graphv_core" {>= "0.1"}
"graphv_font" {= "0.1.1"}
"graphv_font_stb_truetype" {= "0.1.1"}
"graphv_gles2_native_impl" {= "0.1.1"}
"graphv_gles2" {= "0.1.1"}
"graphv_core" {= "0.1.1"}
"odoc" {with-doc}
]
build: [
Expand Down
2 changes: 1 addition & 1 deletion graphv_gles2_native_impl.opam
Expand Up @@ -13,7 +13,7 @@ depends: [
"dune" {>= "2.8"}
"ppx_expect" {>= "v0.14.1" & with-test}
"conf-gles2" {>= "1"}
"graphv_core_lib" {>= "0.1"}
"graphv_core_lib" {= "0.1.1"}
"odoc" {with-doc}
]
build: [
Expand Down
10 changes: 5 additions & 5 deletions graphv_webgl.opam
Expand Up @@ -11,11 +11,11 @@ bug-reports: "https://github.com/wlitwin/graphv/issues"
depends: [
"dune" {>= "2.8"}
"ppx_expect" {>= "v0.14.1" & with-test}
"graphv_font" {>= "0.1"}
"graphv_font_js" {>= "0.1"}
"graphv_webgl_impl" {>= "0.1"}
"graphv_gles2" {>= "0.1"}
"graphv_core" {>= "0.1"}
"graphv_font" {= "0.1.1"}
"graphv_font_js" {= "0.1.1"}
"graphv_webgl_impl" {= "0.1.1"}
"graphv_gles2" {= "0.1.1"}
"graphv_core" {= "0.1.1"}
"odoc" {with-doc}
]
build: [
Expand Down
2 changes: 1 addition & 1 deletion graphv_webgl_impl.opam
Expand Up @@ -14,7 +14,7 @@ depends: [
"ppx_expect" {>= "v0.14.1" & with-test}
"js_of_ocaml-ppx" {>= "3.9.0"}
"js_of_ocaml" {>= "3.9.0"}
"graphv_core_lib" {>= "0.1"}
"graphv_core_lib" {= "0.1.1"}
"odoc" {with-doc}
]
build: [
Expand Down

0 comments on commit 12fd65f

Please sign in to comment.