Skip to content

Commit

Permalink
Upstream changes made in release
Browse files Browse the repository at this point in the history
  • Loading branch information
ulrikstrid committed Dec 19, 2024
1 parent 2029201 commit 4dbd4fe
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 15 deletions.
2 changes: 1 addition & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -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
--------------
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
6 changes: 3 additions & 3 deletions dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -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")

Expand Down
14 changes: 8 additions & 6 deletions dune-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
8 changes: 4 additions & 4 deletions jose.opam
Original file line number Diff line number Diff line change
Expand Up @@ -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"}
Expand Down Expand Up @@ -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"

0 comments on commit 4dbd4fe

Please sign in to comment.