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

Commit f29bbf7

Browse files
authored
Extension version bump 0.2.2 (#185)
1 parent a34e27b commit f29bbf7

File tree

3 files changed

+33
-8
lines changed

3 files changed

+33
-8
lines changed

ext/package.xml

Lines changed: 24 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,20 +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>2018-04-18</date>
16-
<time>14:21:00</time>
15+
<date>2018-05-08</date>
16+
<time>16:17:00</time>
1717
<version>
18-
<release>0.2.1</release>
19-
<api>0.2.1</api>
18+
<release>0.2.2</release>
19+
<api>0.2.2</api>
2020
</version>
2121
<stability>
2222
<release>alpha</release>
2323
<api>alpha</api>
2424
</stability>
2525
<license>Apache 2.0</license>
2626
<notes>
27-
- Preserve annotation, link, and message event options (#171)
28-
- Preserve span stacktrace when provided as an option (#171)
27+
- Fix refcounts for arguments in traced function callbacks (#184)
2928
</notes>
3029
<contents>
3130
<dir baseinstalldir="/" name="/">
@@ -65,6 +64,8 @@ This extension allows you to easily gather latency and other metadata by watchin
6564
<file name="context_span_id.phpt" role="test" />
6665
<file name="function_callback.phpt" role="test" />
6766
<file name="function_callback_arguments.phpt" role="test" />
67+
<file name="function_callback_arguments_array.phpt" role="test" />
68+
<file name="function_callback_arguments_string.phpt" role="test" />
6869
<file name="function_callback_array.phpt" role="test" />
6970
<file name="function_callback_callable_wrong_return.phpt" role="test" />
7071
<file name="function_callback_extra_arguments.phpt" role="test" />
@@ -82,6 +83,8 @@ This extension allows you to easily gather latency and other metadata by watchin
8283
<file name="message_events.phpt" role="test" />
8384
<file name="method_callback.phpt" role="test" />
8485
<file name="method_callback_arguments.phpt" role="test" />
86+
<file name="method_callback_arguments_array.phpt" role="test" />
87+
<file name="method_callback_arguments_string.phpt" role="test" />
8588
<file name="method_callback_array.phpt" role="test" />
8689
<file name="method_callback_scope.phpt" role="test" />
8790
<file name="method_callback_string.phpt" role="test" />
@@ -290,5 +293,20 @@ Fix handling startTime when passed to opencensus_trace_begin (#135)
290293
- Preserve span stacktrace when provided as an option (#171)
291294
</notes>
292295
</release>
296+
<release>
297+
<version>
298+
<release>0.2.2</release>
299+
<api>0.2.2</api>
300+
</version>
301+
<stability>
302+
<release>alpha</release>
303+
<api>alpha</api>
304+
</stability>
305+
<date>2018-05-08</date>
306+
<license>Apache 2.0</license>
307+
<notes>
308+
- Fix refcounts for arguments in traced function callbacks (#184)
309+
</notes>
310+
</release>
293311
</changelog>
294312
</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.2.1"
33+
#define PHP_OPENCENSUS_VERSION "0.2.2"
3434
#define PHP_OPENCENSUS_EXTNAME "opencensus"
3535

3636
PHP_FUNCTION(opencensus_version);

ext/releases.yaml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,4 +81,11 @@ releases:
8181
stability: alpha
8282
notes: |-
8383
- Preserve annotation, link, and message event options (#171)
84-
- Preserve span stacktrace when provided as an option (#171)
84+
- Preserve span stacktrace when provided as an option (#171)
85+
86+
- date: '2018-05-08'
87+
time: 16:17:00
88+
version: 0.2.2
89+
stability: alpha
90+
notes: |-
91+
- Fix refcounts for arguments in traced function callbacks (#184)

0 commit comments

Comments
 (0)