Skip to content

Commit

Permalink
Merge pull request #470 from DataDog/build_release_0.27.1
Browse files Browse the repository at this point in the history
Release 0.27.1
  • Loading branch information
pawelchcki authored Jun 5, 2019
2 parents 1476d15 + a650a04 commit 23963ac
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 14 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file - [read more

## [Unreleased]

## [0.27.1]

### Fixed
- Memory leak when garbage collecting span stacks #469

Expand Down Expand Up @@ -490,7 +492,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.27.0...HEAD
[Unreleased]: https://github.com/DataDog/dd-trace-php/compare/0.27.1...HEAD
[0.27.1]: https://github.com/DataDog/dd-trace-php/compare/0.27.0...0.27.1
[0.27.0]: https://github.com/DataDog/dd-trace-php/compare/0.26.0...0.27.0
[0.26.0]: https://github.com/DataDog/dd-trace-php/compare/0.25.0...0.26.0
[0.25.0]: https://github.com/DataDog/dd-trace-php/compare/0.24.0...0.25.0
Expand Down
15 changes: 4 additions & 11 deletions package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,26 +10,19 @@
<email>[email protected]</email>
<active>yes</active>
</lead>
<date>2019-06-5</date>
<date>2019-06-05</date>
<version>
<release>0.27.0</release>
<api>0.27.0</api>
<release>0.27.1</release>
<api>0.27.1</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="https://github.com/DataDog/dd-trace-php/blob/master/LICENSE">BSD 3-Clause</license>
<notes>
### Added
- Set the hostname of a URL as the service name for curl and Guzzle requests when `DD_TRACE_HTTP_CLIENT_SPLIT_BY_DOMAIN=true` #459

### Changed
- Replace multiple calls to `mt_rand()` (32-bit) with one call to `dd_trace_generate_id()` which implements [MT19937-64](http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/VERSIONS/C-LANG/mt19937-64.c) and returns a 63-bit unsigned integer as a string #449

### Fixed
- Traces no longer affect deterministic random from `mt_rand()` #449
- Fix API change with Symfony 4.x EventDispatcher #466
- Memory leak when garbage collecting span stacks #469
</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 @@ -26,7 +26,7 @@ final class Tracer implements TracerInterface
{
use LoggingTrait;

const VERSION = '0.27.0';
const VERSION = '0.27.1';

/**
* @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.27.0"
#define PHP_DDTRACE_VERSION "0.27.1"
#endif

0 comments on commit 23963ac

Please sign in to comment.