This file contains a checklist for steps to take to release a new version of InMAP.
-
Update the version number in
framework.go
and incmd/inmap/build.sh
. -
Update the version number in
README.md
. Make sure the README and other documentation is up to date. -
If the input data format has changed since the last release, change the
DataVersion
and/orVarGridDataVersion
variables inframework.go
and regenerate the input data with the new version number. -
Set the release date in
CHANGELOG.md
. -
Commit the results.
-
Run
cmd/inmap/build.sh
to create executables for different platforms. -
Tag the release version using
git tag v${version}
and push it usinggit push origin v${version}
. -
Create a release on github and add the binary executables and any new input or evaluation data as downloads.