diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index c93709a..0000000 --- a/.travis.yml +++ /dev/null @@ -1,6 +0,0 @@ -language: bash -sudo: false - -script: - - ./check_checksum -h || true - - ./test.sh diff --git a/AUTHORS b/AUTHORS deleted file mode 100644 index a7814b8..0000000 --- a/AUTHORS +++ /dev/null @@ -1 +0,0 @@ -Markus Frosch diff --git a/RELEASE.md b/RELEASE.md deleted file mode 100644 index 107b9b6..0000000 --- a/RELEASE.md +++ /dev/null @@ -1,48 +0,0 @@ -# Release Workflow - -Specify the release version. - -``` -VERSION=0.3.0 -``` - -Update the version in `check_checksum`: - -``` -sed -i "s~^version=.*~version='$VERSION'~" check_checksum -``` - -## Authors - -Update the [.mailmap](.mailmap) and [AUTHORS](AUTHORS) files: - -``` -git checkout master -git log --use-mailmap | grep ^Author: | cut -f2- -d' ' | sort | uniq > AUTHORS -``` - -## Git Tag - -Commit these changes to the "master" branch: - -``` -git commit -v -a -m "Release version $VERSION" -``` - -Create a signed tag: - -``` -git tag -s -m "Version $VERSION" "v$VERSION" -``` - -Push the branch and tag. - -``` -git push origin master -git push --tags -``` - -## GitHub Release - -Create a new release for the newly created Git tag. -https://github.com/NETWAYS/check_checksum/releases