提交 d208318c 编写于 作者: H heyanlong

3.3.1

上级 a0700a2a
...@@ -20,7 +20,7 @@ func main() { ...@@ -20,7 +20,7 @@ func main() {
app := cli.NewApp() app := cli.NewApp()
app.Name = "sky_php_agent" app.Name = "sky_php_agent"
app.Usage = "the skywalking trace sending agent" app.Usage = "the skywalking trace sending agent"
app.Version = "3.3.0" app.Version = "3.3.1"
app.Flags = []cli.Flag{ app.Flags = []cli.Flag{
&cli.StringSliceFlag{Name: "grpc", Usage: "SkyWalking collector address", Value: cli.NewStringSlice("127.0.0.1:11800")}, &cli.StringSliceFlag{Name: "grpc", Usage: "SkyWalking collector address", Value: cli.NewStringSlice("127.0.0.1:11800")},
&cli.StringFlag{Name: "socket", Usage: "Pipeline for communicating with PHP", Value: "/tmp/sky-agent.sock"}, &cli.StringFlag{Name: "socket", Usage: "Pipeline for communicating with PHP", Value: "/tmp/sky-agent.sock"},
......
...@@ -18,9 +18,9 @@ You can run the following commands to install the SkyWalking PHP Agent. ...@@ -18,9 +18,9 @@ You can run the following commands to install the SkyWalking PHP Agent.
## Install PHP Extension ## Install PHP Extension
```shell script ```shell script
curl -Lo v3.3.0.tar.gz https://github.com/SkyAPM/SkyAPM-php-sdk/archive/v3.3.0.tar.gz curl -Lo v3.3.1.tar.gz https://github.com/SkyAPM/SkyAPM-php-sdk/archive/v3.3.1.tar.gz
tar zxvf v3.3.0.tar.gz tar zxvf v3.3.1.tar.gz
cd SkyAPM-php-sdk-3.3.0 cd SkyAPM-php-sdk-3.3.1
phpize && ./configure && make && make install phpize && ./configure && make && make install
``` ```
...@@ -29,7 +29,7 @@ phpize && ./configure && make && make install ...@@ -29,7 +29,7 @@ phpize && ./configure && make && make install
For installing the sky-php-agent, you first need to build it: For installing the sky-php-agent, you first need to build it:
```shell script ```shell script
cd SkyAPM-php-sdk-3.3.0 cd SkyAPM-php-sdk-3.3.1
go build -o sky-php-agent cmd/main.go go build -o sky-php-agent cmd/main.go
chmod +x sky-php-agent chmod +x sky-php-agent
cp sky-php-agent /usr/local/bin cp sky-php-agent /usr/local/bin
......
...@@ -47,6 +47,19 @@ ...@@ -47,6 +47,19 @@
<extsrcrelease /> <extsrcrelease />
<changelog> <changelog>
{{release}} {{release}}
<release>
<version>
<release>3.3.1</release>
<api>3.3.1</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<notes>
Fix bugs
</notes>
</release>
<release> <release>
<version> <version>
<release>3.3.0</release> <release>3.3.0</release>
......
...@@ -15,10 +15,10 @@ ...@@ -15,10 +15,10 @@
<email>yanlong@php.net</email> <email>yanlong@php.net</email>
<active>yes</active> <active>yes</active>
</lead> </lead>
<date>2020-05-12</date> <date>2020-06-03</date>
<version> <version>
<release>3.3.0</release> <release>3.3.1</release>
<api>3.3.0</api> <api>3.3.1</api>
</version> </version>
<stability> <stability>
<release>stable</release> <release>stable</release>
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
</stability> </stability>
<license uri="http://www.apache.org/licenses/LICENSE-2.0.html">Apache2.0</license> <license uri="http://www.apache.org/licenses/LICENSE-2.0.html">Apache2.0</license>
<notes> <notes>
Added memcache collection and skywalking 8.0 support Fix bugs
</notes> </notes>
<contents> <contents>
<dir name="/"> <dir name="/">
...@@ -166,6 +166,19 @@ ...@@ -166,6 +166,19 @@
<extsrcrelease /> <extsrcrelease />
<changelog> <changelog>
<release>
<version>
<release>3.3.1</release>
<api>3.3.1</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<notes>
Fix bugs
</notes>
</release>
<release> <release>
<version> <version>
<release>3.3.0</release> <release>3.3.0</release>
......
...@@ -25,7 +25,7 @@ extern zend_module_entry skywalking_module_entry; ...@@ -25,7 +25,7 @@ extern zend_module_entry skywalking_module_entry;
#define phpext_skywalking_ptr &skywalking_module_entry #define phpext_skywalking_ptr &skywalking_module_entry
#define SKY_DEBUG 0 #define SKY_DEBUG 0
#define PHP_SKYWALKING_VERSION "3.3.0" /* Replace with version number for your extension */ #define PHP_SKYWALKING_VERSION "3.3.1" /* Replace with version number for your extension */
#ifdef PHP_WIN32 #ifdef PHP_WIN32
# define PHP_SKYWALKING_API __declspec(dllexport) # define PHP_SKYWALKING_API __declspec(dllexport)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册