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

Commit 4d11799

Browse files
authored
Prepare version 0.1.1 (#95)
* Prepare version 0.1.1 * Fix version reported by the extension
1 parent 2143104 commit 4d11799

3 files changed

Lines changed: 29 additions & 9 deletions

File tree

ext/package.xml

Lines changed: 21 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,22 +12,19 @@ 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-12-12</date>
16-
<time>09:34:00</time>
15+
<date>2017-12-22</date>
16+
<time>16:55:00</time>
1717
<version>
18-
<release>0.1.0</release>
19-
<api>0.1.0</api>
18+
<release>0.1.1</release>
19+
<api>0.1.1</api>
2020
</version>
2121
<stability>
2222
<release>alpha</release>
2323
<api>alpha</api>
2424
</stability>
2525
<license>Apache 2.0</license>
2626
<notes>
27-
First alpha release.
28-
- Refactored internal data structures to match OpenCensus models
29-
- Supports creating detached spans.
30-
- Add support for annotations, message events, and links.
27+
Fix segfault when specifying attributes in a callback (#93)
3128
</notes>
3229
<contents>
3330
<dir baseinstalldir="/" name="/">
@@ -66,6 +63,7 @@ First alpha release.
6663
<file name="context_span_id.phpt" role="test" />
6764
<file name="function_callback.phpt" role="test" />
6865
<file name="function_callback_arguments.phpt" role="test" />
66+
<file name="function_callback_arguments_gc.phpt" role="test" />
6967
<file name="function_callback_array.phpt" role="test" />
7068
<file name="function_callback_callable_wrong_return.phpt" role="test" />
7169
<file name="function_callback_extra_arguments.phpt" role="test" />
@@ -195,5 +193,20 @@ First alpha release.
195193
- Add support for annotations, message events, and links.
196194
</notes>
197195
</release>
196+
<release>
197+
<version>
198+
<release>0.1.1</release>
199+
<api>0.1.1</api>
200+
</version>
201+
<stability>
202+
<release>alpha</release>
203+
<api>alpha</api>
204+
</stability>
205+
<date>2017-12-22</date>
206+
<license>Apache 2.0</license>
207+
<notes>
208+
Fix segfault when specifying attributes in a callback (#93)
209+
</notes>
210+
</release>
198211
</changelog>
199212
</package>

ext/php_opencensus.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
#include <sys/time.h>
3131
#endif
3232

33-
#define PHP_OPENCENSUS_VERSION "0.1.0"
33+
#define PHP_OPENCENSUS_VERSION "0.1.1"
3434
#define PHP_OPENCENSUS_EXTNAME "opencensus"
3535

3636
#define PHP_OPENCENSUS_MAKE_STD_ZVAL(pzv) \

ext/releases.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,3 +38,10 @@ releases:
3838
- Refactored internal data structures to match OpenCensus models
3939
- Supports creating detached spans.
4040
- Add support for annotations, message events, and links.
41+
42+
- date: '2017-12-22'
43+
time: 16:55:00
44+
version: 0.1.1
45+
stability: alpha
46+
notes: |-
47+
Fix segfault when specifying attributes in a callback (#93)

0 commit comments

Comments
 (0)