mirror of
https://github.com/anthonyoteri/dredge.git
synced 2026-06-05 23:36:53 -04:00
Compare commits
3 Commits
v0.1.0-rc1
..
v0.1.0
| Author | SHA1 | Date | |
|---|---|---|---|
| b0239fb049 | |||
| ed84e92112 | |||
| cfdefb287c |
@@ -0,0 +1,14 @@
|
|||||||
|
# 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
|
||||||
|
- v0.1.0
|
||||||
|
|
||||||
|
- Additional scripts for managing the release process by Anthony Oteri cfdefb2
|
||||||
|
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
- v0.1.0
|
||||||
|
|
||||||
|
- Additional scripts for managing the release process by Anthony Oteri cfdefb2
|
||||||
@@ -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
+28
@@ -0,0 +1,28 @@
|
|||||||
|
#
|
||||||
|
# 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)
|
||||||
|
|
||||||
|
RELEASE_NOTES="${REPO_ROOT}/RELEASE_NOTES.md"
|
||||||
|
/usr/bin/cat "${REPO_ROOT}/docs/release-notes-template.md" | tee "${RELEASE_NOTES}"
|
||||||
|
|
||||||
|
for note in $(/usr/bin/find "${REPO_ROOT}/docs" -name "changelog*.md" -print | sort -rn); do
|
||||||
|
/usr/bin/cat "${note}" | tee -a "${RELEASE_NOTES}"
|
||||||
|
echo "" | tee -a "${RELEASE_NOTES}"
|
||||||
|
echo "" | tee -a "${RELEASE_NOTES}"
|
||||||
|
done
|
||||||
Reference in New Issue
Block a user