diff --git a/ChangeLog.md b/ChangeLog.md index fb84d884..ae703820 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -2,7 +2,9 @@ # 2 -## 2.6 +## 2.7 + +### 2.7.0 * Added new function, `mtev_dyn_buffer_maybe_add_vprintf`, that will not try to expand the buffer and will return how many more bytes are needed. @@ -12,13 +14,15 @@ `mtev_dyn_buffer_maybe_add_vprintf` and handling the buffer manually on failure to avoid the extra copy if you plan on using it in a hot path. +## 2.6 + ## 2.6.0 * Add various hooks into `mtev_clustering` to allow applications to use custom fields. ## 2.5 -## 2.5.4 +### 2.5.4 * Fix issue in `mtev_net_heartbeat` where there would be attempts to use invalid messages * Improve logging in `mtev_net_heartbeat` diff --git a/src/Makefile.in b/src/Makefile.in index 70aa673d..3b41baec 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -8,7 +8,7 @@ ifeq ($(V),) endif SEMVER_MAJOR=2 -SEMVER_MINOR=6 +SEMVER_MINOR=7 SEMVER_PATCH=0 LIBMTEV_VERSION=$(SEMVER_MAJOR).$(SEMVER_MINOR).$(SEMVER_PATCH)