mirror of
https://gitlab.com/ric_harvey/MailHog.git
synced 2024-11-23 14:24:03 +00:00
add release notes
This commit is contained in:
parent
a8682632c6
commit
de5e1c13a3
2 changed files with 14 additions and 7 deletions
14
Makefile
14
Makefile
|
@ -42,13 +42,13 @@ pull:
|
|||
cd ../storage; git pull
|
||||
|
||||
tag:
|
||||
git tag -a -m 'v${VERSION}' ${VERSION} && git push origin ${VERSION}
|
||||
cd ../data; git tag -a -m 'v${VERSION}' ${VERSION} && git push origin ${VERSION}
|
||||
cd ../http; git tag -a -m 'v${VERSION}' ${VERSION} && git push origin ${VERSION}
|
||||
cd ../MailHog-Server; git tag -a -m 'v${VERSION}' ${VERSION} && git push origin ${VERSION}
|
||||
cd ../MailHog-UI; git tag -a -m 'v${VERSION}' ${VERSION} && git push origin ${VERSION}
|
||||
cd ../smtp; git tag -a -m 'v${VERSION}' ${VERSION} && git push origin ${VERSION}
|
||||
cd ../storage; git tag -a -m 'v${VERSION}' ${VERSION} && git push origin ${VERSION}
|
||||
git tag -a -m 'v${VERSION}' v${VERSION} && git push origin v${VERSION}
|
||||
cd ../data; git tag -a -m 'v${VERSION}' v${VERSION} && git push origin v${VERSION}
|
||||
cd ../http; git tag -a -m 'v${VERSION}' v${VERSION} && git push origin v${VERSION}
|
||||
cd ../MailHog-Server; git tag -a -m 'v${VERSION}' v${VERSION} && git push origin v${VERSION}
|
||||
cd ../MailHog-UI; git tag -a -m 'v${VERSION}' v${VERSION} && git push origin v${VERSION}
|
||||
cd ../smtp; git tag -a -m 'v${VERSION}' v${VERSION} && git push origin v${VERSION}
|
||||
cd ../storage; git tag -a -m 'v${VERSION}' v${VERSION} && git push origin v${VERSION}
|
||||
|
||||
rocker: rocker-deps
|
||||
rocker build
|
||||
|
|
|
@ -1,6 +1,13 @@
|
|||
MailHog Releases
|
||||
================
|
||||
|
||||
### [v0.1.9](https://github.com/mailhog/MailHog/releases/v0.1.9)
|
||||
- #76 - optimise docker image size, thanks @missedone
|
||||
- #77 - fix ci by removing go-uuid, thanks @missedone
|
||||
- #80, mailhog/MailHog-UI#15, mailhog/MailHog-Server#2 - add webpath, thanks @oers
|
||||
- mailhog/MailHog-UI#13 - create hyperlinks for URLs in plain text, thanks @GREsau
|
||||
- mailhog/MailHog-UI#14 - add no-referrer referrer policy, thanks @djmattyg007
|
||||
|
||||
### [v0.1.8](https://github.com/mailhog/MailHog/releases/v0.1.8)
|
||||
- Add `MailHog sendmail` shortcut to `mhsendmail`
|
||||
- Add #40 - HTTP basic authentication
|
||||
|
|
Loading…
Reference in a new issue