diff --git a/CHANGELOG.md b/CHANGELOG.md index 63eced8601..76441ec2a1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,9 @@ All notable changes to this project will be documented in this file - [read more](docs/changelog.md). ## [Unreleased] + +## [0.14.2] + ### Fixed - Ensure Function name is safely copied to avoid freeing persistent string #333 @@ -331,7 +334,8 @@ At an high level here are the breaking changes we introduced: ### Added - OpenTracing compliance tha can be used for manual instrumentation -[Unreleased]: https://github.com/DataDog/dd-trace-php/compare/0.14.1...HEAD +[Unreleased]: https://github.com/DataDog/dd-trace-php/compare/0.14.2...HEAD +[0.14.2]: https://github.com/DataDog/dd-trace-php/compare/0.14.1...0.14.2 [0.14.1]: https://github.com/DataDog/dd-trace-php/compare/0.14.0...0.14.1 [0.14.0]: https://github.com/DataDog/dd-trace-php/compare/0.13.4...0.14.0 [0.13.4]: https://github.com/DataDog/dd-trace-php/compare/0.13.3...0.13.4 diff --git a/package.xml b/package.xml index 7b67747bae..533ce39d70 100644 --- a/package.xml +++ b/package.xml @@ -10,10 +10,10 @@ sammyk@php.net yes - 2019-02-27 + 2019-02-28 - 0.14.1 - 0.14.1 + 0.14.2 + 0.14.2 beta @@ -22,7 +22,7 @@ BSD 3-Clause ### Fixed - - Large number of mysqli spans not containing relevant information #330 + - Ensure Function name is safely copied to avoid freeing persistent string #333 diff --git a/src/DDTrace/Tracer.php b/src/DDTrace/Tracer.php index ef799308b3..a4b8f3fb1f 100644 --- a/src/DDTrace/Tracer.php +++ b/src/DDTrace/Tracer.php @@ -20,7 +20,7 @@ final class Tracer implements TracerInterface { use LoggingTrait; - const VERSION = '0.14.1-beta'; + const VERSION = '0.14.2-beta'; /** * @var Span[][] diff --git a/src/ext/version.h b/src/ext/version.h index 7b5ded7aa6..b97692c1aa 100644 --- a/src/ext/version.h +++ b/src/ext/version.h @@ -1,3 +1,3 @@ #ifndef PHP_DDTRACE_VERSION -#define PHP_DDTRACE_VERSION "0.14.1-beta" +#define PHP_DDTRACE_VERSION "0.14.2-beta" #endif