From d22e9cf29f4caaef4819a04b93230b3a69a2d84e Mon Sep 17 00:00:00 2001 From: Matt Reiferson Date: Sun, 19 Aug 2018 16:37:34 -0700 Subject: [PATCH] bump v1.1.0 stable --- ChangeLog.md | 4 ++-- contrib/nsq.spec | 2 +- internal/version/binary.go | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ChangeLog.md b/ChangeLog.md index 7b445e42f..d1d67ca34 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -2,7 +2,7 @@ ## Releases -### 1.1.0-rc1 - 2018-07-31 +### 1.1.0 - 2018-08-19 **Upgrading from 1.0.0-compat**: Just a few backwards incompatible changes: @@ -58,8 +58,8 @@ Bugs: * #1005 - `nsqadmin`: fix typo "Delfate" in connection attrs list (thanks @arussellsaw) * #1032 - `nsqd`: fix loading metadata with messages queued on un-paused topic with multiple channels (thanks @michaelyou) * #1004 - `nsqlookupd`: exit with error when failed to listen on ports (thanks @stephens2424) + * #1068 - `nsqadmin`: fix html escaping for large_graph url inside javascript * misc test suite improvements and updates (go versions, tls certs, ...) - ### 1.0.0-compat - 2017-03-21 diff --git a/contrib/nsq.spec b/contrib/nsq.spec index 0e853e9fe..bc6b88308 100644 --- a/contrib/nsq.spec +++ b/contrib/nsq.spec @@ -1,5 +1,5 @@ %define name nsq -%define version 1.0.1-alpha +%define version 1.1.0 %define release 1 %define path usr/local %define group Database/Applications diff --git a/internal/version/binary.go b/internal/version/binary.go index ab3edf11f..5659d47e9 100644 --- a/internal/version/binary.go +++ b/internal/version/binary.go @@ -5,7 +5,7 @@ import ( "runtime" ) -const Binary = "1.1.0-rc1" +const Binary = "1.1.0" func String(app string) string { return fmt.Sprintf("%s v%s (built w/%s)", app, Binary, runtime.Version())