Skip to content

Commit 6d2c2c8

Browse files
committed
Prep for 1.1.0
1 parent ebde999 commit 6d2c2c8

File tree

3 files changed

+24
-4
lines changed

3 files changed

+24
-4
lines changed

.goxc.json

-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
"Os": "darwin freebsd linux windows",
88
"ResourcesInclude": "README*,LICENSE*,CHANGELOG*,inbucket.bat,etc,themes",
99
"PackageVersion": "1.1.0",
10-
"PrereleaseInfo": "rc2",
1110
"ConfigVersion": "0.9",
1211
"BuildSettings": {
1312
"LdFlagsXVars": {

CHANGELOG.md

+23-2
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,15 @@ Change Log
44
All notable changes to this project will be documented in this file.
55
This project adheres to [Semantic Versioning](http://semver.org/).
66

7-
[Unreleased]
7+
[1.1.0] - 2016-09-03
88
------------
99

1010
### Added
1111
- Homebrew inbucket.conf and formula (see README)
1212

13+
### Fixed
14+
- Log and continue when unable to delete oldest message during cap enforcement
15+
1316
[1.1.0-rc2] - 2016-03-06
1417
------------------------
1518

@@ -46,8 +49,26 @@ This project adheres to [Semantic Versioning](http://semver.org/).
4649
specific message.
4750

4851
[Unreleased]: https://github.com/jhillyerd/inbucket/compare/master...develop
52+
[1.1.0]: https://github.com/jhillyerd/inbucket/compare/1.1.0-rc2...1.1.0
4953
[1.1.0-rc2]: https://github.com/jhillyerd/inbucket/compare/1.1.0-rc1...1.1.0-rc2
5054
[1.1.0-rc1]: https://github.com/jhillyerd/inbucket/compare/1.0...1.1.0-rc1
5155
[1.0]: https://github.com/jhillyerd/inbucket/compare/1.0-rc1...1.0
5256

53-
See http://keepachangelog.com/ for instructions on how to update this file.
57+
58+
Release Checklist
59+
-----------------
60+
61+
1. Create release branch: `git flow release start 1.x.0`
62+
2. Update CHANGELOG.md:
63+
- Ensure *Unreleased* section is up to date
64+
- Rename *Unreleased* section to release name and date.
65+
- Add new GitHub `/compare` link
66+
3. Update goxc version info: `goxc -wc -pv=1.x.0 -pr=snapshot`
67+
4. Run: `goxc interpolate-source` to update VERSION var
68+
5. Run tests
69+
6. Test cross-compile: `goxc`
70+
7. Commit changes and merge release: `git flow release finish 1.x.0`
71+
8. Upload to bintray: `goxc bintray`
72+
9. Update `binary_versions` option in `inbucket-site/_config.yml`
73+
74+
See http://keepachangelog.com/ for additional instructions on how to update this file.

inbucket.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import (
2121

2222
var (
2323
// VERSION contains the build version number, populated during linking by goxc
24-
VERSION = "1.1.0-rc2"
24+
VERSION = "1.1.0"
2525

2626
// BUILDDATE contains the build date, populated during linking by goxc
2727
BUILDDATE = "undefined"

0 commit comments

Comments
 (0)