From 8f709bd1e540e855b6937abfd9e518d216a6e3ab Mon Sep 17 00:00:00 2001 From: James Owen Date: Fri, 17 May 2019 17:04:20 +0200 Subject: [PATCH 1/3] Update maintainer --- zxcvbn.opam | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zxcvbn.opam b/zxcvbn.opam index 7204dda..324f936 100644 --- a/zxcvbn.opam +++ b/zxcvbn.opam @@ -1,6 +1,6 @@ opam-version: "2.0" -maintainer: "Nathan Rebours " -authors: "Nathan Rebours " +maintainer: "Cryptosense " +authors: "Nathan Rebours " homepage: "https://github.com/cryptosense/ocaml-zxcvbn" bug-reports: "https://github.com/cryptosense/ocaml-zxcvbn/issues" license: "BSD-2" From 526ccee46a182f3c9b7ea20f47faba44aaa635f6 Mon Sep 17 00:00:00 2001 From: James Owen Date: Fri, 17 May 2019 17:05:57 +0200 Subject: [PATCH 2/3] Add a more blatant documentation link to the README --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 0215133..fa75d76 100644 --- a/README.md +++ b/README.md @@ -4,3 +4,7 @@ Bindings to [zxcvbn-c](https://github.com/tsyrogit/zxcvbn-c), the C implementation of dropbox [zxcvbn](https://github.com/dropbox/zxcvbn) password strength estimation library. + +## Documentation + +API documentation is available [here](https://cryptosense.github.io/ocaml-zxcvbn/doc/) From 8c21092b00559b01edc8cc14c0e08c319421a41f Mon Sep 17 00:00:00 2001 From: James Owen Date: Fri, 17 May 2019 18:21:10 +0200 Subject: [PATCH 3/3] Restrict to 4.04+ --- zxcvbn.opam | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zxcvbn.opam b/zxcvbn.opam index 324f936..2ebd3d8 100644 --- a/zxcvbn.opam +++ b/zxcvbn.opam @@ -14,7 +14,7 @@ run-test: [ ] depends: [ "dune" {build & >= "1.4.0"} - "ocaml" {>= "4.02.0"} + "ocaml" {>= "4.04.0"} "ounit" {with-test} "ppx_deriving" {>= "4.0" & < "5.0"} ]