diff --git a/CHANGES.md b/CHANGES.md index dad845d..fb53b97 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,6 +1,6 @@ 0.10.0 -------------- -- Upgrade mirage-crypto and remove cstruct +- Upgrade mirage-crypto and remove cstruct (by @anmonteiro, special thanks to @hannesm for help with debugging a unexpected test failure) 0.9.0 -------------- diff --git a/README.md b/README.md index 74d8f2d..cd8b55e 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ JOSE implementation in ReasonML and OCaml -[![Build Status](https://dev.azure.com/strid/reason-jose/_apis/build/status/ulrikstrid.reason-jose?branchName=master)](https://dev.azure.com/strid/reason-jose/_build/latest?definitionId=39&branchName=master) +[![Build Status](https://dev.azure.com/strid/ocaml-jose/_apis/build/status/ulrikstrid.ocaml-jose?branchName=master)](https://dev.azure.com/strid/ocaml-jose/_build/latest?definitionId=39&branchName=master) ## Goals diff --git a/dune-project b/dune-project index 0e93025..d5a0e93 100644 --- a/dune-project +++ b/dune-project @@ -5,11 +5,11 @@ (license MIT) (source - (github ulrikstrid/reason-jose)) + (github ulrikstrid/ocaml-jose)) -(homepage https://ulrikstrid.github.io/reason-jose) +(homepage https://ulrikstrid.github.io/ocaml-jose) -(documentation https://ulrikstrid.github.io/reason-jose) +(documentation https://ulrikstrid.github.io/ocaml-jose) (authors "Ulrik Strid") diff --git a/dune-release.sh b/dune-release.sh index 31460e9..65be4cb 100755 --- a/dune-release.sh +++ b/dune-release.sh @@ -10,18 +10,20 @@ fi step() { + local step_name="$1" + echo "Next step is $step_name" printf "Continue? [Yn] " read action - if [ "x$action" == "xn" ]; then exit 2; fi - if [ "x$action" == "xN" ]; then exit 2; fi + if [ "$action" = "n" ]; then exit 2; fi + if [ "$action" = "N" ]; then exit 2; fi } dune-release tag "$TAG" -step +step "distrib" dune-release distrib -p jose -t "$TAG" --skip-tests #--skip-lint -step +step "publish distrib" dune-release publish distrib -p jose -t "$TAG" -step +step "opam pkg" dune-release opam pkg -p jose -t "$TAG" -step +step "opam submit" dune-release opam submit -p jose -t "$TAG" diff --git a/jose.opam b/jose.opam index 9842e4c..369e57e 100644 --- a/jose.opam +++ b/jose.opam @@ -9,9 +9,9 @@ maintainer: [ ] authors: ["Ulrik Strid"] license: "MIT" -homepage: "https://ulrikstrid.github.io/reason-jose" -doc: "https://ulrikstrid.github.io/reason-jose" -bug-reports: "https://github.com/ulrikstrid/reason-jose/issues" +homepage: "https://ulrikstrid.github.io/ocaml-jose" +doc: "https://ulrikstrid.github.io/ocaml-jose" +bug-reports: "https://github.com/ulrikstrid/ocaml-jose/issues" depends: [ "ocaml" {>= "4.08.0"} "base64" {>= "3.3.0"} @@ -46,4 +46,4 @@ build: [ "@doc" {with-doc} ] ] -dev-repo: "git+https://github.com/ulrikstrid/reason-jose.git" +dev-repo: "git+https://github.com/ulrikstrid/ocaml-jose.git"