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

Commit

Permalink
Prepare PECL 0.2.0 (#155)
Browse files Browse the repository at this point in the history
* Prepare PECL 0.2.0

* Fix time
  • Loading branch information
chingor13 authored Apr 2, 2018
1 parent 8d8ae0e commit 6255978
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 6 deletions.
29 changes: 24 additions & 5 deletions ext/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,20 @@ This extension allows you to easily gather latency and other metadata by watchin
<email>[email protected]</email>
<active>yes</active>
</lead>
<date>2018-03-05</date>
<time>12:31:00</time>
<date>2018-04-02</date>
<time>12:19:00</time>
<version>
<release>0.1.4</release>
<api>0.1.4</api>
<release>0.2.0</release>
<api>0.2.0</api>
</version>
<stability>
<release>alpha</release>
<api>alpha</api>
</stability>
<license>Apache 2.0</license>
<notes>
Fix handling startTime when passed to opencensus_trace_begin (#135)
- Adds Span kind (#151)
- Adds Span sameProcessAsParentSpan (#153)
</notes>
<contents>
<dir baseinstalldir="/" name="/">
Expand Down Expand Up @@ -94,6 +95,8 @@ Fix handling startTime when passed to opencensus_trace_begin (#135)
<file name="non-string-labels.phpt" role="test" />
<file name="null_start_time.phpt" role="test" />
<file name="span_class.phpt" role="test" />
<file name="span_kind.phpt" role="test" />
<file name="span_same_process_as_parent_span.phpt" role="test" />
<file name="span_specify_id.phpt" role="test" />
<file name="static_method_callback_scope.phpt" role="test" />
<file name="static_method_test.phpt" role="test" />
Expand Down Expand Up @@ -255,5 +258,21 @@ Fix segfault on OSX (#129)
Fix handling startTime when passed to opencensus_trace_begin (#135)
</notes>
</release>
<release>
<version>
<release>0.2.0</release>
<api>0.2.0</api>
</version>
<stability>
<release>alpha</release>
<api>alpha</api>
</stability>
<date>2018-04-02</date>
<license>Apache 2.0</license>
<notes>
- Adds Span kind (#151)
- Adds Span sameProcessAsParentSpan (#153)
</notes>
</release>
</changelog>
</package>
2 changes: 1 addition & 1 deletion ext/php_opencensus.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
#include <sys/time.h>
#endif

#define PHP_OPENCENSUS_VERSION "0.1.4"
#define PHP_OPENCENSUS_VERSION "0.2.0"
#define PHP_OPENCENSUS_EXTNAME "opencensus"

PHP_FUNCTION(opencensus_version);
Expand Down
8 changes: 8 additions & 0 deletions ext/releases.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,3 +66,11 @@ releases:
stability: alpha
notes: |-
Fix handling startTime when passed to opencensus_trace_begin (#135)
- date: '2018-04-02'
time: 12:19:00
version: 0.2.0
stability: alpha
notes: |-
- Adds Span kind (#151)
- Adds Span sameProcessAsParentSpan (#153)

0 comments on commit 6255978

Please sign in to comment.