Skip to content

Commit

Permalink
Merge pull request #335 from DataDog/bump_version_0.14.2
Browse files Browse the repository at this point in the history
Version bump 0.14.2
  • Loading branch information
labbati authored Feb 28, 2019
2 parents e1bd38d + 9fb969c commit 9f9c700
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
<email>[email protected]</email>
<active>yes</active>
</lead>
<date>2019-02-27</date>
<date>2019-02-28</date>
<version>
<release>0.14.1</release>
<api>0.14.1</api>
<release>0.14.2</release>
<api>0.14.2</api>
</version>
<stability>
<release>beta</release>
Expand All @@ -22,7 +22,7 @@
<license uri="https://github.com/DataDog/dd-trace-php/blob/master/LICENSE">BSD 3-Clause</license>
<notes>
### Fixed
- Large number of mysqli spans not containing relevant information #330
- Ensure Function name is safely copied to avoid freeing persistent string #333
</notes>
<contents>
<dir name="/">
Expand Down
2 changes: 1 addition & 1 deletion src/DDTrace/Tracer.php
Original file line number Diff line number Diff line change
Expand Up @@ -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[][]
Expand Down
2 changes: 1 addition & 1 deletion src/ext/version.h
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 9f9c700

Please sign in to comment.