mirror of
https://gitlab.com/ric_harvey/MailHog.git
synced 2024-11-23 22:34:04 +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
|
cd ../storage; git pull
|
||||||
|
|
||||||
tag:
|
tag:
|
||||||
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}' ${VERSION} && git push origin ${VERSION}
|
cd ../data; git tag -a -m 'v${VERSION}' v${VERSION} && git push origin v${VERSION}
|
||||||
cd ../http; git tag -a -m 'v${VERSION}' ${VERSION} && git push origin ${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}' ${VERSION} && git push origin ${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}' ${VERSION} && git push origin ${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}' ${VERSION} && git push origin ${VERSION}
|
cd ../smtp; git tag -a -m 'v${VERSION}' v${VERSION} && git push origin v${VERSION}
|
||||||
cd ../storage; git tag -a -m 'v${VERSION}' ${VERSION} && git push origin ${VERSION}
|
cd ../storage; git tag -a -m 'v${VERSION}' v${VERSION} && git push origin v${VERSION}
|
||||||
|
|
||||||
rocker: rocker-deps
|
rocker: rocker-deps
|
||||||
rocker build
|
rocker build
|
||||||
|
|
|
@ -1,6 +1,13 @@
|
||||||
MailHog Releases
|
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)
|
### [v0.1.8](https://github.com/mailhog/MailHog/releases/v0.1.8)
|
||||||
- Add `MailHog sendmail` shortcut to `mhsendmail`
|
- Add `MailHog sendmail` shortcut to `mhsendmail`
|
||||||
- Add #40 - HTTP basic authentication
|
- Add #40 - HTTP basic authentication
|
||||||
|
|
Loading…
Reference in a new issue