From 62406f05e821b6e68495a55e5a70b7890250211e Mon Sep 17 00:00:00 2001 From: James Hillyerd Date: Wed, 31 Oct 2018 20:39:35 -0700 Subject: [PATCH 1/3] travis: remove branch master check for deploy --- .travis.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 1844167..b2ddf48 100644 --- a/.travis.yml +++ b/.travis.yml @@ -24,4 +24,3 @@ deploy: script: etc/travis-deploy.sh on: tags: true - branch: master From 6ef2beb82159bd9231886efff2b54b3a56bc0ede Mon Sep 17 00:00:00 2001 From: James Hillyerd Date: Sat, 15 Dec 2018 12:02:23 -0800 Subject: [PATCH 2/3] CHANGELOG: release 2.1.0 --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 76d14cd..342ccde 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ Change Log All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## v2.1.0 + +No change from beta1. + ## [v2.1.0-beta1] From 7ea8e2fc03a1aba6b667a8332bb3f1ac9fcc27be Mon Sep 17 00:00:00 2001 From: James Hillyerd Date: Thu, 14 Mar 2019 21:15:09 -0700 Subject: [PATCH 3/3] Release 3.0.0-beta1 --- CHANGELOG.md | 4 +++- go.mod | 3 +-- go.sum | 6 ++++-- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6dfb0dd..0f84044 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ Change Log All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). -## [Unreleased] +## [v3.0.0-beta1] ### Added - `posix-millis` field to REST message and header responses for easier date @@ -14,6 +14,7 @@ This project adheres to [Semantic Versioning](http://semver.org/). - Rewrote the user interface from scratch, it's now an Elm powered single page application. - Moved the Inbucket repository to its own GitHub organization. +- Update to enmime v0.5.0 ## v2.1.0 @@ -195,6 +196,7 @@ No change from beta1. specific message. [Unreleased]: https://github.com/inbucket/inbucket/compare/master...develop +[v3.0.0-beta1]: https://github.com/inbucket/inbucket/compare/v2.1.0...v3.0.0-beta1 [v2.1.0-beta1]: https://github.com/inbucket/inbucket/compare/v2.0.0...v2.1.0-beta1 [v2.0.0]: https://github.com/inbucket/inbucket/compare/v2.0.0-rc1...v2.0.0 [v2.0.0-rc1]: https://github.com/inbucket/inbucket/compare/v1.3.1...v2.0.0-rc1 diff --git a/go.mod b/go.mod index 8cebf9b..903f353 100644 --- a/go.mod +++ b/go.mod @@ -7,13 +7,12 @@ require ( github.com/gorilla/css v1.0.0 github.com/gorilla/mux v1.6.2 github.com/gorilla/websocket v1.4.0 - github.com/jhillyerd/enmime v0.4.0 + github.com/jhillyerd/enmime v0.5.0 github.com/jhillyerd/goldiff v0.1.0 github.com/kelseyhightower/envconfig v1.3.0 github.com/microcosm-cc/bluemonday v1.0.1 github.com/pmezard/go-difflib v1.0.0 // indirect github.com/rs/zerolog v1.9.1 - github.com/saintfish/chardet v0.0.0-20120816061221-3af4cd4741ca // indirect github.com/stretchr/testify v1.2.2 golang.org/x/net v0.0.0-20181017193950-04a2e542c03f ) diff --git a/go.sum b/go.sum index 4b89317..2d74425 100644 --- a/go.sum +++ b/go.sum @@ -16,8 +16,8 @@ github.com/gorilla/websocket v1.4.0 h1:WDFjx/TMzVgy9VdMMQi2K2Emtwi2QcUQsztZ/zLaH github.com/gorilla/websocket v1.4.0/go.mod h1:E7qHFY5m1UJ88s3WnNqhKjPHQ0heANvMoAMk2YaljkQ= github.com/jaytaylor/html2text v0.0.0-20180606194806-57d518f124b0 h1:xqgexXAGQgY3HAjNPSaCqn5Aahbo5TKsmhp8VRfr1iQ= github.com/jaytaylor/html2text v0.0.0-20180606194806-57d518f124b0/go.mod h1:CVKlgaMiht+LXvHG173ujK6JUhZXKb2u/BQtjPDIvyk= -github.com/jhillyerd/enmime v0.4.0 h1:cxxx79gIUDBYFQY1mog6d7aKhFc5u7WqSj82N9oVemA= -github.com/jhillyerd/enmime v0.4.0/go.mod h1:nquUBRmYirl49eDpg7AdgJgNi5WHW/6uL+RirCkhL3E= +github.com/jhillyerd/enmime v0.5.0 h1:0U3mdCFsFsdQcuztie8g+eQgZ2GhtVCun8AJArOqdzc= +github.com/jhillyerd/enmime v0.5.0/go.mod h1:/bb6lwXIWgsVnrO4uuLg8rBVqidJYeG9I34d/WfWurg= github.com/jhillyerd/goldiff v0.1.0 h1:7JzKPKVwAg1GzrbnsToYzq3Y5+S7dXM4hgEYiOzaf4A= github.com/jhillyerd/goldiff v0.1.0/go.mod h1:WeDal6DTqhbMhNkf5REzWCIvKl3JWs0Q9omZ/huIWAs= github.com/kelseyhightower/envconfig v1.3.0 h1:IvRS4f2VcIQy6j4ORGIf9145T/AsUB+oY8LyvN8BXNM= @@ -28,6 +28,8 @@ github.com/microcosm-cc/bluemonday v1.0.1 h1:SIYunPjnlXcW+gVfvm0IlSeR5U3WZUOLfVm github.com/microcosm-cc/bluemonday v1.0.1/go.mod h1:hsXNsILzKxV+sX77C5b8FSuKF00vh2OMYv+xgHpAMF4= github.com/olekukonko/tablewriter v0.0.0-20180912035003-be2c049b30cc h1:rQ1O4ZLYR2xXHXgBCCfIIGnuZ0lidMQw2S5n1oOv+Wg= github.com/olekukonko/tablewriter v0.0.0-20180912035003-be2c049b30cc/go.mod h1:vsDQFd/mU46D+Z4whnwzcISnGGzXWMclvtLoiIKAKIo= +github.com/pkg/errors v0.8.0 h1:WdK/asTD0HN+q6hsWO3/vpuAkAr+tw6aNJNDFFf0+qw= +github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/rs/zerolog v1.9.1 h1:AjV/SFRF0+gEa6rSjkh0Eji/DnkrJKVpPho6SW5g4mU=