mirror of
https://github.com/anthonyoteri/dredge.git
synced 2026-06-05 15:26:53 -04:00
Additional scripts for managing the release process
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
# Dredge Release Notes
|
||||
|
||||
## Known Issues
|
||||
|
||||
* The delete command is currently not implemented and will return an error
|
||||
if called.
|
||||
* Docker authentication is not currently supported, and attempts to query a
|
||||
registry which requires authentication will fail.
|
||||
|
||||
## Changelog
|
||||
Executable
+37
@@ -0,0 +1,37 @@
|
||||
#
|
||||
# Copyright 2023 Anthony Oteri
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
#
|
||||
|
||||
#!/usr/bin/bash
|
||||
|
||||
set -e
|
||||
|
||||
REPO_ROOT=$(git rev-parse --show-toplevel)
|
||||
|
||||
version=$1
|
||||
|
||||
if [ -z "$1" ]; then
|
||||
echo "Usage $0 <version> [from tag]"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
previous=${2:-$(git describe --abbrev=0 --match='v*')}
|
||||
|
||||
changelog="${REPO_ROOT}/docs/changelog-${previous}-${version}.md"
|
||||
|
||||
echo "- ${version}" | tee ${changelog}
|
||||
echo "" | tee -a ${changelog}
|
||||
git log --pretty=format:' - %s by %an %h' --no-merges ${previous}.. | tee -a ${changelog}
|
||||
|
||||
Executable
+45
@@ -0,0 +1,45 @@
|
||||
#
|
||||
# Copyright 2023 Anthony Oteri
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
#
|
||||
|
||||
#!/usr/bin/bash -e
|
||||
|
||||
version=$1
|
||||
previous=$2
|
||||
|
||||
if [ -z "$1" ]; then
|
||||
echo "Usage $0 <version> [previous]"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
REPO_ROOT=$(git rev-parse --show-toplevel)
|
||||
SCRIPTS="${REPO_ROOT}/scripts"
|
||||
|
||||
${SCRIPTS}/generate-changelog.sh "v${version}" "${previous}" && \
|
||||
${SCRIPTS}/update-release-notes.sh && \
|
||||
git add "${REPO_ROOT}/docs" "${REPO_ROOT}/RELEASE_NOTES.md"
|
||||
|
||||
sed -i "s/^version = \".*\"/version = \"${version}\"/" \
|
||||
"${REPO_ROOT}/Cargo.toml" && git add "${REPO_ROOT}/Cargo.toml"
|
||||
|
||||
echo "*************************************************************************"
|
||||
echo "Release is ready, please use the following to commit changes"
|
||||
echo
|
||||
echo "git commit -am \"Release version ${version}\" && \ "
|
||||
echo " git tag -a -m v${version} v${version}"
|
||||
echo
|
||||
echo "*************************************************************************"
|
||||
|
||||
|
||||
Executable
+21
@@ -0,0 +1,21 @@
|
||||
#
|
||||
# Copyright 2023 Anthony Oteri
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
#
|
||||
|
||||
#!/usr/bin/bash
|
||||
|
||||
REPO_ROOT=$(git rev-parse --show-toplevel)
|
||||
|
||||
/usr/bin/cat "${REPO_ROOT}/docs/release-notes-template.md" $(/usr/bin/ls "${REPO_ROOT}/docs/changelog*.md" 2>/dev/null | true | sort -rn) | tee "${REPO_ROOT}/RELEASE_NOTES.md"
|
||||
Reference in New Issue
Block a user