Skip to content
This repository was archived by the owner on Oct 3, 2023. It is now read-only.

Commit 0d1a692

Browse files
authored
Ext release 0.0.4 (#47)
* Prepare 0.0.4 version of the opencensus extension * Fix version number * Update installation on README
1 parent f37b73d commit 0d1a692

5 files changed

Lines changed: 33 additions & 9 deletions

File tree

RELEASING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ The PHP library and extension are released independently of each other.
1616

1717
1. Run the extension release script:
1818

19-
`php ext_release.php > ext/package.xml`
19+
`php scripts/ext_release.php > ext/package.xml`
2020

2121
1. Go to the extension directory:
2222

ext/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ This extension has been built and tested on the following PHP versions:
2929
1. [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

3535
1. Untar the package

ext/package.xml

Lines changed: 22 additions & 6 deletions
Original file line numberDiff line numberDiff 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>

ext/php_opencensus.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
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) \

ext/releases.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff 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)

0 commit comments

Comments
 (0)