Skip to content

Commit

Permalink
Release 0.63.0 (#1294)
Browse files Browse the repository at this point in the history
* release 0.63.0

* fix ampersand character in package.ml file
  • Loading branch information
labbati authored Aug 18, 2021
1 parent 1253ff9 commit e296a8f
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ext/version.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#ifndef PHP_DDTRACE_VERSION
// Must begin with a number for Debian packaging requirements
#define PHP_DDTRACE_VERSION "1.0.0-nightly"
#define PHP_DDTRACE_VERSION "0.63.0"
#endif
11 changes: 10 additions & 1 deletion package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,16 @@
<api>stable</api>
</stability>
<license uri="https://github.com/DataDog/dd-trace-php/blob/master/LICENSE">BSD 3-Clause</license>
<notes>${notes}</notes>
<notes>
### Added

- ZAI config (#1260)
- Use exceptions ZAI for PHP 7 as well (#1283)

### Fixed

- Fix arginfo of error &amp; exception handler (#1291)
</notes>
<contents>
<dir name="/">
<!-- components -->
Expand Down
2 changes: 1 addition & 1 deletion src/DDTrace/Tracer.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ final class Tracer implements TracerInterface
* Must begin with a number for Debian packaging requirements
* Must use single-quotes for packaging script to work
*/
const VERSION = '1.0.0-nightly';
const VERSION = '0.63.0';

/**
* @var Span[][]
Expand Down

0 comments on commit e296a8f

Please sign in to comment.