diff --git a/CHANGELOG.md b/CHANGELOG.md index b3a2beb..b3ac9c3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ # Change Log All notable changes to this project will be documented in this file. + +## 2.1.3 (2018-06-13) +- Updated AWS SDK dependency version to `1.14.1` +- Refactored `MockTimerClient` +- Moving version number variable to `cfg` package + ## 2.1.2 (2018-05-14) - SystemD service file updates for Debian and Linux binaries: PR [#3](https://github.com/aws/aws-xray-daemon/pull/3) - Added Travis CI: PR [#7](https://github.com/aws/aws-xray-daemon/pull/7) diff --git a/VERSION b/VERSION index 8f9174b..abae0d9 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.1.2 \ No newline at end of file +2.1.3 \ No newline at end of file diff --git a/daemon/cfg/cfg.go b/daemon/cfg/cfg.go index adf83d9..7d86f87 100644 --- a/daemon/cfg/cfg.go +++ b/daemon/cfg/cfg.go @@ -22,7 +22,7 @@ import ( ) // Version number of the X-Ray daemon. -const Version = "2.1.2" +const Version = "2.1.3" var configLocations = []string{ "/etc/amazon/xray/cfg.yaml",