From 6d2e8dd754464c5c97446b4eae2efdc3997fc490 Mon Sep 17 00:00:00 2001 From: Chris Larsen Date: Wed, 11 Nov 2015 12:57:36 -0800 Subject: [PATCH] Release 2.2.0RC3 to fix the static file bug copying introduced in 8dcd77d --- Makefile.am | 4 ++-- NEWS | 11 +++++++++++ configure.ac | 2 +- 3 files changed, 14 insertions(+), 3 deletions(-) diff --git a/Makefile.am b/Makefile.am index 0f299fd7e3..d5e8334f10 100644 --- a/Makefile.am +++ b/Makefile.am @@ -450,8 +450,8 @@ install-data-local: staticroot install-data-lib install-data-tools \ install-data-bin install-data-etc @$(NORMAL_INSTALL) test -z "$(staticdir)" || $(mkdir_p) "$(DESTDIR)$(staticdir)" - @set -e; pwd; ls -lFh; (cd "$(DEV_TSD_STATICROOT)"; \ - list=`find -L . ! -type d`); for p in $$list; do \ + @set -e; pwd; ls -lFh; cd "$(DEV_TSD_STATICROOT)"; \ + list=`find -L . ! -type d`; for p in $$list; do \ p=$${p#./}; \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ dstdir=`dirname "$(DESTDIR)$(staticdir)/$$p"`; \ diff --git a/NEWS b/NEWS index 04393452ea..1a7515e1e9 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,10 @@ OpenTSDB - User visible changes. +* Version 2.2.0 RC3 (2015-11-11) + +Bug Fixes: + - Fix build issues where the static files were not copied into the proper location. + * Version 2.2.0 RC2 (2015-11-09) Noteworthy Changes: @@ -63,6 +68,12 @@ Bug Fixes: - Avoid OOM issues over Telnet when the sending client isn't reading errors off it's socket fast enough by blocking writes. +* Version 2.1.3 (2015-11-11) + +Bug Fixes: + + - Fix build issues where the static files were not copied into the proper location. + * Version 2.1.2 (2015-11-09) Bug Fixes: diff --git a/configure.ac b/configure.ac index 41c5cac7d3..ad2b2b4893 100644 --- a/configure.ac +++ b/configure.ac @@ -14,7 +14,7 @@ # along with this library. If not, see . # Semantic Versioning (see http://semver.org/). -AC_INIT([opentsdb], [2.2.0RC2], [opentsdb@googlegroups.com]) +AC_INIT([opentsdb], [2.2.0RC3], [opentsdb@googlegroups.com]) AC_CONFIG_AUX_DIR([build-aux]) AM_INIT_AUTOMAKE([foreign])