This repository was archived by the owner on Oct 3, 2023. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ The PHP library and extension are released independently of each other.
1616
17171 . Run the extension release script:
1818
19- ` php ext_release.php > ext/package.xml `
19+ ` php scripts/ ext_release.php > ext/package.xml `
2020
21211 . Go to the extension directory:
2222
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ This extension has been built and tested on the following PHP versions:
29291 . [ Download a release] ( https://github.com/census-instrumentation/opencensus-php/releases )
3030
3131 ``` bash
32- curl https://github.com/census-instrumentation/opencensus-php/archive/v0.0.1 .tar.gz -o opencensus.tar.gz
32+ curl https://github.com/census-instrumentation/opencensus-php/archive/v0.0.4 .tar.gz -o opencensus.tar.gz
3333 ```
3434
35351 . Untar the package
Original file line number Diff line number Diff line change @@ -12,20 +12,20 @@ This extension allows you to easily gather latency and other metadata by watchin
1212 <email >chingor@google.com</email >
1313 <active >yes</active >
1414 </lead >
15- <date >2017-08-25 </date >
16- <time >10:34 :00</time >
15+ <date >2017-10-20 </date >
16+ <time >13:11 :00</time >
1717 <version >
18- <release >0.0.3 </release >
19- <api >0.0.3 </api >
18+ <release >0.0.4 </release >
19+ <api >0.0.4 </api >
2020 </version >
2121 <stability >
2222 <release >devel</release >
2323 <api >devel</api >
2424 </stability >
2525 <license >Apache 2.0</license >
2626 <notes >
27- - Capture span kind (#19 )
28- - Capture stacktrace (#21 )
27+ - Adds php_info() section (#42 )
28+ - Span ids are captured as hex strings (#44 )
2929 </notes >
3030 <contents >
3131 <dir baseinstalldir =" /" name =" /" >
@@ -152,5 +152,21 @@ First dev release
152152- Capture stacktrace (#21)
153153 </notes >
154154 </release >
155+ <release >
156+ <version >
157+ <release >0.0.4</release >
158+ <api >0.0.4</api >
159+ </version >
160+ <stability >
161+ <release >devel</release >
162+ <api >devel</api >
163+ </stability >
164+ <date >2017-10-20</date >
165+ <license >Apache 2.0</license >
166+ <notes >
167+ - Adds php_info() section (#42)
168+ - Span ids are captured as hex strings (#44)
169+ </notes >
170+ </release >
155171 </changelog >
156172</package >
Original file line number Diff line number Diff line change 2424#include "php.h"
2525#include "opencensus_trace.h"
2626
27- #define PHP_OPENCENSUS_VERSION "0.0.3 "
27+ #define PHP_OPENCENSUS_VERSION "0.0.4 "
2828#define PHP_OPENCENSUS_EXTNAME "opencensus"
2929
3030#define PHP_OPENCENSUS_MAKE_STD_ZVAL (pzv ) \
Original file line number Diff line number Diff line change @@ -20,3 +20,11 @@ releases:
2020 notes : |-
2121 - Capture span kind (#19)
2222 - Capture stacktrace (#21)
23+
24+ - date : ' 2017-10-20'
25+ time : 13:11:00
26+ version : 0.0.4
27+ stability : devel
28+ notes : |-
29+ - Adds php_info() section (#42)
30+ - Span ids are captured as hex strings (#44)
You can’t perform that action at this time.
0 commit comments