Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version bump 0.13.3 #313

Merged
merged 1 commit into from
Feb 19, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,14 @@
All notable changes to this project will be documented in this file - [read more](docs/changelog.md).

## [Unreleased]

## [0.13.3]

### Fixed
- 7.x handling of `$this` pointer passed to the closure causing errors in PHP VM #311

## [0.13.2]

### Added
- Optional extension .so files compiled with "-g" flag #306
- Log backtrace on segmentation fault, enabled via ddtrace.log_backtrace=1 #300
Expand All @@ -17,7 +21,7 @@ All notable changes to this project will be documented in this file - [read more

### Fixed
- Honor ddtrace provided by composer if user provided one #276
- Remove unused function that was moved to dispatch_table_dtor() (#291)
- Remove unused function that was moved to dispatch_table_dtor() #291
- PHP 5.4 incorrectly handling nested internal functions #295

## [0.13.0]
Expand Down Expand Up @@ -305,7 +309,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.13.2...HEAD
[Unreleased]: https://github.com/DataDog/dd-trace-php/compare/0.13.3...HEAD
[0.13.3]: https://github.com/DataDog/dd-trace-php/compare/0.13.2...0.13.3
[0.13.2]: https://github.com/DataDog/dd-trace-php/compare/0.13.1...0.13.2
[0.13.1]: https://github.com/DataDog/dd-trace-php/compare/0.13.0...0.13.1
[0.13.0]: https://github.com/DataDog/dd-trace-php/compare/0.12.2...0.13.0
Expand Down
12 changes: 4 additions & 8 deletions package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,23 +10,19 @@
<email>sammyk@php.net</email>
<active>yes</active>
</lead>
<date>2019-02-18</date>
<date>2019-02-19</date>
<version>
<release>0.13.2</release>
<api>0.13.2</api>
<release>0.13.3</release>
<api>0.13.3</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<license uri="https://github.com/DataDog/dd-trace-php/blob/master/LICENSE">BSD 3-Clause</license>
<notes>
### Added
- Optional extension .so files compiled with "-g" flag #306
- Log backtrace on segmentation fault, enabled via ddtrace.log_backtrace=1 #300

### Fixed
- Auto-instrumentation when user's autoloader throws exception on not found #305
- 7.x handling of `$this` pointer passed to the closure causing errors in PHP VM #311
</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.13.2-beta';
const VERSION = '0.13.3-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.13.2-beta"
#define PHP_DDTRACE_VERSION "0.13.3-beta"
#endif