Skip to content

Commit

Permalink
Merge pull request #339 from DataDog/bump_version_0.15.0
Browse files Browse the repository at this point in the history
Version bump 0.15.0
  • Loading branch information
labbati authored Mar 5, 2019
2 parents 9f9c700 + 11c4c5a commit c6b20ee
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 10 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ All notable changes to this project will be documented in this file - [read more

## [Unreleased]

## [0.15.0]

### Changed
- Removed beta references and get ready for GA #339

## [0.14.2]

### Fixed
Expand Down Expand Up @@ -334,7 +339,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.2...HEAD
[Unreleased]: https://github.com/DataDog/dd-trace-php/compare/0.0.15.0...HEAD
[0.15.0]: https://github.com/DataDog/dd-trace-php/compare/0.14.2...0.15.0
[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
Expand Down
14 changes: 7 additions & 7 deletions package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,19 @@
<email>[email protected]</email>
<active>yes</active>
</lead>
<date>2019-02-28</date>
<date>2019-03-05</date>
<version>
<release>0.14.2</release>
<api>0.14.2</api>
<release>0.15.0</release>
<api>0.15.0</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="https://github.com/DataDog/dd-trace-php/blob/master/LICENSE">BSD 3-Clause</license>
<notes>
### Fixed
- Ensure Function name is safely copied to avoid freeing persistent string #333
### Changed
- Removed beta references and get ready for GA #339
</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.2-beta';
const VERSION = '0.15.0';

/**
* @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.2-beta"
#define PHP_DDTRACE_VERSION "0.15.0"
#endif

0 comments on commit c6b20ee

Please sign in to comment.