Skip to content

Commit

Permalink
Release 0.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
bobot committed Feb 11, 2023
1 parent fb63663 commit 0800b4d
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
3 changes: 3 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## Release 0.1.6 ##
- use pkg-config for finding gmp and mpfr

## Release 0.1.3 ##

- fixes compilation on ocaml < 4.13
Expand Down
12 changes: 12 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,15 @@ test:

opam:
dune build --root . *.opam

DESCRIPTION="$(shell sed -n -e "p;n;:next;/^##/Q;p;n;b next" CHANGES | perl -pe 's/\n/\\n/')"

release:
@echo -n $(DESCRIPTION)
@echo "Is the CHANGES correct for $(TAG) (y/n)?"
@read yesno; test "$$yesno" = y
dune-release tag $(TAG)
dune-release distrib --skip-build --skip-lint
dune-release publish
dune-release opam pkg
dune-release opam submit

0 comments on commit 0800b4d

Please sign in to comment.