From 446de1f0e59da768c677d3a3861852731d10f03e Mon Sep 17 00:00:00 2001 From: Yogiraj Awati Date: Mon, 17 Jun 2019 14:46:35 -0700 Subject: [PATCH] Release commit 3.0.2 --- CHANGELOG.md | 3 +++ VERSION | 2 +- daemon/cfg/cfg.go | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 39ba664..d25a7cd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,9 @@ # Change Log All notable changes to this project will be documented in this file. +## 3.0.2 (2019-04-19) +- Reconfiguring ring buffer channel size to number of buffers allocated to the daemon instead of fix 250 traces + ## 3.0.1 (2019-04-16) - Removed allocating 64KB size to UDP socket connection. Now, the daemon relies on underlying OS default UDP receiver size for the UDP socket connection - Updated readme about credential configuration: [PR #21](https://github.com/aws/aws-xray-daemon/pull/21) diff --git a/VERSION b/VERSION index 13d683c..d9c62ed 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -3.0.1 \ No newline at end of file +3.0.2 \ No newline at end of file diff --git a/daemon/cfg/cfg.go b/daemon/cfg/cfg.go index f383c1e..69342ae 100644 --- a/daemon/cfg/cfg.go +++ b/daemon/cfg/cfg.go @@ -24,7 +24,7 @@ import ( ) // Version number of the X-Ray daemon. -const Version = "3.0.1" +const Version = "3.0.2" var cfgFileVersions = [...]int{1, 2} // Supported versions of cfg.yaml file.