Skip to content

Commit

Permalink
New release
Browse files Browse the repository at this point in the history
  • Loading branch information
gilith committed Feb 26, 2018
1 parent 45d7d5e commit 740b46b
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
10 changes: 9 additions & 1 deletion Makefile.dev
Original file line number Diff line number Diff line change
Expand Up @@ -345,6 +345,14 @@ documentation:
tarball: clean doc/DONT-RELEASE Makefile.dev
cd .. ; COPYFILE_DISABLE=true tar cvzhf opentheory/release/opentheory.tar.gz --exclude-from opentheory/doc/DONT-RELEASE opentheory

.PHONY: release-instructions
release-instructions:
@echo "Completed release, now do the following:"
@echo "1. git add and commit all changes"
@perl -ne 'if ($$_ =~ /^opentheory ([0-9.]+) \(release ([0-9]+)\),$$/) { print "2. git tag -a v$$1.$$2 -s -m \"Version $$1 (release $$2)\"\n"; }' doc/download.html
@echo "3. git push --tags"
@echo "4. Goto github > opentheory > releases > Create a new release"

.PHONY: release
release: release-stamp mosml mlton polyml documentation
rm -f $(RELEASE_DIR)/*.html $(RELEASE_DIR)/*.png
Expand All @@ -355,4 +363,4 @@ release: release-stamp mosml mlton polyml documentation
rsync -azv --delete --checksum --size-only --exclude=.gitignore -e ssh $(RELEASE_DIR)/ joe@laurelin.gilith.com:www/gilith/software/opentheory
ssh joe@laurelin.gilith.com '/bin/bash -l bin/install-opentheory'
@if GIT_PAGER='' git grep '[*][*][*]' ; then echo "WARNING: TODO comments discovered" ; fi
@echo Completed release
$(MAKE) release-instructions
2 changes: 1 addition & 1 deletion doc/download.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ <h3>Download the opentheory tool</h3>

<p>The latest version is

opentheory 1.3 (release 20171122),
opentheory 1.3 (release 20180226),

and can be downloaded in the following formats:</p>

Expand Down
2 changes: 1 addition & 1 deletion doc/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ <h3>Project status</h3>

is

opentheory 1.3 (release 20171122).
opentheory 1.3 (release 20180226).

The opentheory tool is free software, released under the

Expand Down
2 changes: 1 addition & 1 deletion src/opentheory.sml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ val program = "opentheory";

val version = "1.3";

val release = " (release 20171122)";
val release = " (release 20180226)";

val homepage = "http://www.gilith.com/software/opentheory"

Expand Down

0 comments on commit 740b46b

Please sign in to comment.