1
0
mirror of https://github.com/jhillyerd/inbucket.git synced 2025-12-19 10:37:01 +00:00

Prep for 1.1.0-rc2

This commit is contained in:
James Hillyerd
2016-03-06 16:47:19 -08:00
parent f16debebbf
commit 59f55769c8
3 changed files with 16 additions and 7 deletions

View File

@@ -7,7 +7,7 @@
"Os": "darwin freebsd linux windows", "Os": "darwin freebsd linux windows",
"ResourcesInclude": "README*,LICENSE*,CHANGELOG*,inbucket.bat,etc,themes", "ResourcesInclude": "README*,LICENSE*,CHANGELOG*,inbucket.bat,etc,themes",
"PackageVersion": "1.1.0", "PackageVersion": "1.1.0",
"PrereleaseInfo": "rc1", "PrereleaseInfo": "rc2",
"ConfigVersion": "0.9", "ConfigVersion": "0.9",
"BuildSettings": { "BuildSettings": {
"LdFlagsXVars": { "LdFlagsXVars": {

View File

@@ -1,8 +1,12 @@
# Change Log Change Log
==========
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/). This project adheres to [Semantic Versioning](http://semver.org/).
## [Unreleased] [1.1.0-rc2] - 2016-03-06
------------------------
### Added ### Added
- Message Cap to status page - Message Cap to status page
- Search-while-you-type message list filter - Search-while-you-type message list filter
@@ -11,7 +15,9 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- Shutdown hang in retention scanner - Shutdown hang in retention scanner
- Display empty subject as `(No Subject)` - Display empty subject as `(No Subject)`
## [1.1.0-rc1] - 2016-03-04 [1.1.0-rc1] - 2016-03-04
------------------------
### Added ### Added
- Inbucket now builds with Go 1.5 or 1.6 - Inbucket now builds with Go 1.5 or 1.6
- Project can build & run inside a Docker container - Project can build & run inside a Docker container
@@ -24,14 +30,17 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- RESTful API moved to `/api/v1` base URI - RESTful API moved to `/api/v1` base URI
- More graceful shutdown on Ctrl-C or when errors encountered - More graceful shutdown on Ctrl-C or when errors encountered
## [1.0] - 2014-04-14 [1.0] - 2014-04-14
------------------
### Added ### Added
- Add new configuration option `mailbox.message.cap` to prevent individual - Add new configuration option `mailbox.message.cap` to prevent individual
mailboxes from growing too large. mailboxes from growing too large.
- Add Link button to messages, allows for directing another person to a - Add Link button to messages, allows for directing another person to a
specific message. specific message.
[Unreleased]: https://github.com/jhillyerd/inbucket/compare/1.1.0-rc1...develop [Unreleased]: https://github.com/jhillyerd/inbucket/compare/master...develop
[1.1.0-rc2]: https://github.com/jhillyerd/inbucket/compare/1.1.0-rc1...1.1.0-rc2
[1.1.0-rc1]: https://github.com/jhillyerd/inbucket/compare/1.0...1.1.0-rc1 [1.1.0-rc1]: https://github.com/jhillyerd/inbucket/compare/1.0...1.1.0-rc1
[1.0]: https://github.com/jhillyerd/inbucket/compare/1.0-rc1...1.0 [1.0]: https://github.com/jhillyerd/inbucket/compare/1.0-rc1...1.0

View File

@@ -21,7 +21,7 @@ import (
var ( var (
// VERSION contains the build version number, populated during linking by goxc // VERSION contains the build version number, populated during linking by goxc
VERSION = "1.1.0-rc1" VERSION = "1.1.0-rc2"
// BUILDDATE contains the build date, populated during linking by goxc // BUILDDATE contains the build date, populated during linking by goxc
BUILDDATE = "undefined" BUILDDATE = "undefined"