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

Commit 99dfaba

Browse files
authored
Prepare release 0.1.0 (#87)
* Prepare release 0.1.0 * Fix date/time of 0.1.0 version
1 parent 4fee333 commit 99dfaba

File tree

4 files changed

+58
-21
lines changed

4 files changed

+58
-21
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
}
3232
],
3333
"conflict": {
34-
"ext-opencensus": ">= 0.1.0"
34+
"ext-opencensus": "< 0.1.0"
3535
},
3636
"suggest": {
3737
"ext-opencensus": "Enable tracing arbitrary functions.",

ext/package.xml

Lines changed: 46 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -12,38 +12,48 @@ 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-10-20</date>
16-
<time>13:11:00</time>
15+
<date>2017-12-12</date>
16+
<time>09:34:00</time>
1717
<version>
18-
<release>0.0.4</release>
19-
<api>0.0.4</api>
18+
<release>0.1.0</release>
19+
<api>0.1.0</api>
2020
</version>
2121
<stability>
22-
<release>devel</release>
23-
<api>devel</api>
22+
<release>alpha</release>
23+
<api>alpha</api>
2424
</stability>
2525
<license>Apache 2.0</license>
2626
<notes>
27-
- Adds php_info() section (#42)
28-
- Span ids are captured as hex strings (#44)
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.
2931
</notes>
3032
<contents>
3133
<dir baseinstalldir="/" name="/">
3234
<file baseinstalldir="/" name="config.m4" role="src" />
3335
<file baseinstalldir="/" name="config.w32" role="src" />
3436
<file baseinstalldir="/" name="opencensus_trace.c" role="src" />
37+
<file baseinstalldir="/" name="opencensus_trace_annotation.c" role="src" />
3538
<file baseinstalldir="/" name="opencensus_trace_context.c" role="src" />
39+
<file baseinstalldir="/" name="opencensus_trace_link.c" role="src" />
40+
<file baseinstalldir="/" name="opencensus_trace_message_event.c" role="src" />
3641
<file baseinstalldir="/" name="opencensus_trace_span.c" role="src" />
3742
<file baseinstalldir="/" name="opencensus_trace.h" role="src" />
43+
<file baseinstalldir="/" name="opencensus_trace_annotation.h" role="src" />
3844
<file baseinstalldir="/" name="opencensus_trace_context.h" role="src" />
45+
<file baseinstalldir="/" name="opencensus_trace_link.h" role="src" />
46+
<file baseinstalldir="/" name="opencensus_trace_message_event.h" role="src" />
3947
<file baseinstalldir="/" name="opencensus_trace_span.h" role="src" />
48+
<file baseinstalldir="/" name="opencensus_trace_time_event.h" role="src" />
4049
<file baseinstalldir="/" name="php_opencensus.h" role="src" />
4150

4251
<file name="README.md" role="doc" />
4352
<file name="LICENSE" role="doc" />
4453

4554
<dir name="tests">
4655
<file name="common.php" role="test" />
56+
<file name="annotations.phpt" role="test" />
4757
<file name="backtrace_test.phpt" role="test" />
4858
<file name="basic_class_function.phpt" role="test" />
4959
<file name="basic_context.phpt" role="test" />
@@ -52,8 +62,8 @@ This extension allows you to easily gather latency and other metadata by watchin
5262
<file name="clear_traces.phpt" role="test" />
5363
<file name="closure_exeception.phpt" role="test" />
5464
<file name="closure_exeception2.phpt" role="test" />
55-
<file name="constants_test.phpt" role="test" />
5665
<file name="context_class.phpt" role="test" />
66+
<file name="context_span_id.phpt" role="test" />
5767
<file name="function_callback.phpt" role="test" />
5868
<file name="function_callback_arguments.phpt" role="test" />
5969
<file name="function_callback_array.phpt" role="test" />
@@ -63,29 +73,28 @@ This extension allows you to easily gather latency and other metadata by watchin
6373
<file name="function_callback_string.phpt" role="test" />
6474
<file name="function_callback_wrong_return.phpt" role="test" />
6575
<file name="function_custom.phpt" role="test" />
66-
<file name="function_kind_default.phpt" role="test" />
67-
<file name="function_kind_specified.phpt" role="test" />
6876
<file name="inherit_context.phpt" role="test" />
69-
<file name="attributes.phpt" role="test" />
77+
<file name="labels.phpt" role="test" />
78+
<file name="links.phpt" role="test" />
7079
<file name="manual_spans.phpt" role="test" />
7180
<file name="manual_spans_default_options.phpt" role="test" />
7281
<file name="many_spans_test.phpt" role="test" />
82+
<file name="message_events.phpt" role="test" />
7383
<file name="method_callback.phpt" role="test" />
7484
<file name="method_callback_arguments.phpt" role="test" />
7585
<file name="method_callback_array.phpt" role="test" />
7686
<file name="method_callback_scope.phpt" role="test" />
7787
<file name="method_callback_string.phpt" role="test" />
7888
<file name="method_custom.phpt" role="test" />
79-
<file name="method_kind_default.phpt" role="test" />
80-
<file name="method_kind_specified.phpt" role="test" />
8189
<file name="module_callback_static_string.phpt" role="test" />
8290
<file name="nested_spans.phpt" role="test" />
83-
<file name="non-string-attributes-function-callback.phpt" role="test" />
84-
<file name="non-string-attributes-function.phpt" role="test" />
85-
<file name="non-string-attributes-method-callback.phpt" role="test" />
86-
<file name="non-string-attributes-method.phpt" role="test" />
87-
<file name="non-string-attributes.phpt" role="test" />
91+
<file name="non-string-labels-function-callback.phpt" role="test" />
92+
<file name="non-string-labels-function.phpt" role="test" />
93+
<file name="non-string-labels-method-callback.phpt" role="test" />
94+
<file name="non-string-labels-method.phpt" role="test" />
95+
<file name="non-string-labels.phpt" role="test" />
8896
<file name="span_class.phpt" role="test" />
97+
<file name="span_specify_id.phpt" role="test" />
8998
<file name="static_method_callback_scope.phpt" role="test" />
9099
<file name="static_method_test.phpt" role="test" />
91100
<file name="trace_context.phpt" role="test" />
@@ -168,5 +177,23 @@ First dev release
168177
- Span ids are captured as hex strings (#44)
169178
</notes>
170179
</release>
180+
<release>
181+
<version>
182+
<release>0.1.0</release>
183+
<api>0.1.0</api>
184+
</version>
185+
<stability>
186+
<release>alpha</release>
187+
<api>alpha</api>
188+
</stability>
189+
<date>2017-12-12</date>
190+
<license>Apache 2.0</license>
191+
<notes>
192+
First alpha release.
193+
- Refactored internal data structures to match OpenCensus models
194+
- Supports creating detached spans.
195+
- Add support for annotations, message events, and links.
196+
</notes>
197+
</release>
171198
</changelog>
172199
</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.0.4"
33+
#define PHP_OPENCENSUS_VERSION "0.1.0"
3434
#define PHP_OPENCENSUS_EXTNAME "opencensus"
3535

3636
#define PHP_OPENCENSUS_MAKE_STD_ZVAL(pzv) \

ext/releases.yaml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,13 @@ releases:
2828
notes: |-
2929
- Adds php_info() section (#42)
3030
- Span ids are captured as hex strings (#44)
31+
32+
- date: '2017-12-12'
33+
time: 09:34:00
34+
version: 0.1.0
35+
stability: alpha
36+
notes: |-
37+
First alpha release.
38+
- Refactored internal data structures to match OpenCensus models
39+
- Supports creating detached spans.
40+
- Add support for annotations, message events, and links.

0 commit comments

Comments
 (0)