-
-
Notifications
You must be signed in to change notification settings - Fork 803
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[RFC] v0.1 release #339
Comments
I would also add update check version functionality to the required tasks. #336, #337 are ok by me also |
Based on semver naming, is there anything wrong with v0.1? |
Propose the following changes before we release:
|
I'm fine with this. It needs to be put to test to see if it works like you mention though. One extra thing to check is the docker image |
As discussed on discord - we'll use |
I've generate and curated a set of release notes for this version. It was generated from commits between Script to generate the rough draft is here: #!/usr/bin/env bash
previous_tag=0
for current_tag in $(git tag --sort=-creatordate)
do
if [ "$previous_tag" != 0 ];then
tag_date=$(git log -1 --pretty=format:'%ad' --date=short ${previous_tag})
printf "## ${previous_tag} (${tag_date})\n\n"
#git log ${current_tag}...${previous_tag} --pretty=format:'* %s [View](https://github.com/stashapp/stash/commit/%H)' --reverse \
git log ${current_tag}...${previous_tag} --pretty=format:'* %s' --reverse \
| grep -v Merge | sed -re 's|\* (.*) \(#([0-9]+)\)$|* [#\2](https://github.com/stashapp/stash/pull/\2) \1|g'
printf "\n\n"
fi
previous_tag=${current_tag}
done Release Notesv0.1.0 (insert release date here)New Features
Improvements
Bug fixes |
I can spin up some temporary repos we can test on if that helps otherwise I'm not entirely certain what this is going to look like in practice. This is far more professional than I've had to get with anything in the past in some aspects so I'm very interested in learning how this flow works in deployment. |
One more fix prior to closure needs to be reviewed #350 |
Release complete. |
We've got some pretty large changes in the pipeline, and I'd like to do a formal v0.1 release before we merge those in.
Pending PRs to include
Other required tasks
The text was updated successfully, but these errors were encountered: