Skip to content

Commit

Permalink
prepare release 1.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ygrek committed Aug 29, 2015
1 parent 79d9766 commit d335a40
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
1.7.0 (2015-08-29)
* Switch to git and move repo to github
* `-safe-string` compatibility
* use cppo instead of camlp4
* allow to set the exit code in optParse
* add new upstream functions in String

1.6.1 (2013-11-26 - trunk @ r436)
* Drop `extlib_min` package
Expand Down
14 changes: 8 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@

VERSION=$(shell git describe --always --long)
VERSION:=$(shell git describe --always --long)
RELEASE:=1.7.0

ifndef VERSION
VERSION=1.7.0
VERSION:=$(RELEASE)
endif

.SUFFIXES:
Expand All @@ -25,9 +26,10 @@ clean:
$(MAKE) -C src clean
$(MAKE) -C test clean

NAME=ocaml-extlib-$(VERSION)
NAME=extlib-$(RELEASE)

release:
git tag -a -m $(VERSION) $(VERSION)
git archive --prefix=$(NAME)/ $(VERSION) | gzip > $(NAME).tar.gz
gpg -a -b $(NAME).tar.gz
git tag -a -m $(RELEASE) $(RELEASE)
# using github archive - it will have different checksum
#git archive --prefix=$(NAME)/ $(RELEASE) | gzip > $(NAME).tar.gz
# gpg -a -b $(NAME).tar.gz

0 comments on commit d335a40

Please sign in to comment.