Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

1.0.1beta2 release prep #128

Merged
merged 3 commits into from
Jan 29, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 35 additions & 17 deletions ext/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,31 +16,21 @@
<email>[email protected]</email>
<active>yes</active>
</lead>
<date>2024-01-24</date>
<time>23:26:21</time>
<date>2024-01-27</date>
<time>21:38:56</time>
<version>
<release>1.0.1beta1</release>
<release>1.0.0beta2</release>
brettmc marked this conversation as resolved.
Show resolved Hide resolved
<api>1.0</api>
</version>
<stability>
<release>beta</release>
<api>stable</api>
</stability>
<license uri="https://opensource.org/license/apache-2-0/" filesource="LICENSE">Apache 2.0</license>
<notes>opentelemetry 1.0.1beta1
* Fix modifying extra parameters, limit parameter expansion (#120)
* Fix crash by unregistering INI in MSHUTDOWN instead of RSHUTDOWN (#122)
* Support modifying named params (#121)
* adding test for post hook type error (#119)
* Isolate exception state for hooks (#118)
* Update README.md to point issues to the main repository (#117)
* Include PHP 8.3 in build matrix (#112)
* Build images whenever the actions definition changes (#115)
* adding php 8.3 dev image (#113)
* document SourceGuardian incompatibility (#111)
* create draft release on tag, publish windows and pecl builds (#109)
* adding test for post hooks after die/exit (#110)
* add pear to build (#108)
<notes>opentelemetry 1.0.0beta2
brettmc marked this conversation as resolved.
Show resolved Hide resolved
* Fix exception raised by `php_error_docref` that hangs the process in hook (#127)
* clang format (#126)
* Fix build warnings (#125)
</notes>
<contents>
<dir baseinstalldir="/" name="/">
Expand Down Expand Up @@ -310,5 +300,33 @@
<notes>opentelemetry 1.0.0
</notes>
</release>
<release>
<date>2024-01-24</date>
<time>23:26:21</time>
<version>
<release>1.0.1beta1</release>
<api>1.0</api>
</version>
<stability>
<release>beta</release>
<api>stable</api>
</stability>
<license>Apache 2.0</license>
<notes>opentelemetry 1.0.1beta1
* Fix modifying extra parameters, limit parameter expansion (#120)
* Fix crash by unregistering INI in MSHUTDOWN instead of RSHUTDOWN (#122)
* Support modifying named params (#121)
* adding test for post hook type error (#119)
* Isolate exception state for hooks (#118)
* Update README.md to point issues to the main repository (#117)
* Include PHP 8.3 in build matrix (#112)
* Build images whenever the actions definition changes (#115)
* adding php 8.3 dev image (#113)
* document SourceGuardian incompatibility (#111)
* create draft release on tag, publish windows and pecl builds (#109)
* adding test for post hooks after die/exit (#110)
* add pear to build (#108)
</notes>
</release>
</changelog>
</package>
2 changes: 1 addition & 1 deletion ext/php_opentelemetry.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ ZEND_EXTERN_MODULE_GLOBALS(opentelemetry)

#define OTEL_G(v) ZEND_MODULE_GLOBALS_ACCESSOR(opentelemetry, v)

#define PHP_OPENTELEMETRY_VERSION "1.0.1beta1"
#define PHP_OPENTELEMETRY_VERSION "1.0.1beta2"

#if defined(ZTS) && defined(COMPILE_DL_OPENTELEMETRY)
ZEND_TSRMLS_CACHE_EXTERN()
Expand Down
Loading