From 49038d9e78a73d0d8971c3794ea3624b37bda8c3 Mon Sep 17 00:00:00 2001 From: Youngteac Hong Date: Tue, 16 Nov 2021 22:11:32 +0900 Subject: [PATCH] Update CHANGELOG for v0.1.10 (#272) --- CHANGELOG.md | 16 ++++++++++++++++ Makefile | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4ee2e92c6..c04b2ff10 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,22 @@ and Yorkie adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) ## [Unreleased] +## [0.1.10] - 2021-11-16 + +### Added +- Add enable-pprof flag to open pprof via profiling server: #265 +- Build multiple architecture docker images: #10d8c8b +- Add operations metrics in PushPull API: #d23fc14 + +### Changed +- Replace XXXGauges with XXXCounters: #266 +- Reduce memory usage in PushPull API: #268 + +### Fixed +- Fix goroutine leaks on subscriptions: #265 +- Add missing go process collector on metrics: #35cefdb +- Fix missing gRPC interceptors for metrics: #901e4fa + ## [0.1.9] - 2021-10-31 ### Added diff --git a/Makefile b/Makefile index bd6eb3f06..e01c97c2e 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -YORKIE_VERSION := 0.1.9 +YORKIE_VERSION := 0.1.10 GIT_COMMIT := $(shell git rev-parse --short HEAD) BUILD_DATE := $(shell date "+%Y-%m-%d")