From 12fd65f001f7d796b08647e82f9f0201ce7ae884 Mon Sep 17 00:00:00 2001 From: Walter Litwinczyk Date: Thu, 2 Sep 2021 08:33:29 -0700 Subject: [PATCH] Use {= 0.1.1} instead of {>= 0.1} --- dune-project | 44 +++++++++++++++++------------------ graphv.opam | 4 ++-- graphv_core.opam | 2 +- graphv_font.opam | 2 +- graphv_font_js.opam | 6 ++--- graphv_font_stb_truetype.opam | 4 ++-- graphv_gles2.opam | 2 +- graphv_gles2_native.opam | 10 ++++---- graphv_gles2_native_impl.opam | 2 +- graphv_webgl.opam | 10 ++++---- graphv_webgl_impl.opam | 2 +- 11 files changed, 44 insertions(+), 44 deletions(-) diff --git a/dune-project b/dune-project index 5bd9d71..ccdcb0c 100644 --- a/dune-project +++ b/dune-project @@ -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 @@ -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 @@ -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)) )) diff --git a/graphv.opam b/graphv.opam index d95f19c..5729601 100644 --- a/graphv.opam +++ b/graphv.opam @@ -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: [ diff --git a/graphv_core.opam b/graphv_core.opam index 716a48f..aaa1b40 100644 --- a/graphv_core.opam +++ b/graphv_core.opam @@ -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: [ diff --git a/graphv_font.opam b/graphv_font.opam index 90e6351..4e61f51 100644 --- a/graphv_font.opam +++ b/graphv_font.opam @@ -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: [ diff --git a/graphv_font_js.opam b/graphv_font_js.opam index 69abd1d..4ba2ba0 100644 --- a/graphv_font_js.opam +++ b/graphv_font_js.opam @@ -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: [ diff --git a/graphv_font_stb_truetype.opam b/graphv_font_stb_truetype.opam index 3efad57..2d52c91 100644 --- a/graphv_font_stb_truetype.opam +++ b/graphv_font_stb_truetype.opam @@ -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: [ diff --git a/graphv_gles2.opam b/graphv_gles2.opam index ba0628f..5e97438 100644 --- a/graphv_gles2.opam +++ b/graphv_gles2.opam @@ -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: [ diff --git a/graphv_gles2_native.opam b/graphv_gles2_native.opam index e191fd6..f00c31f 100644 --- a/graphv_gles2_native.opam +++ b/graphv_gles2_native.opam @@ -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: [ diff --git a/graphv_gles2_native_impl.opam b/graphv_gles2_native_impl.opam index d92bfc1..d1f6197 100644 --- a/graphv_gles2_native_impl.opam +++ b/graphv_gles2_native_impl.opam @@ -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: [ diff --git a/graphv_webgl.opam b/graphv_webgl.opam index c97b4cd..dd9f02d 100644 --- a/graphv_webgl.opam +++ b/graphv_webgl.opam @@ -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: [ diff --git a/graphv_webgl_impl.opam b/graphv_webgl_impl.opam index 67b1af6..e82f163 100644 --- a/graphv_webgl_impl.opam +++ b/graphv_webgl_impl.opam @@ -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: [