diff --git a/cmd/main.go b/cmd/main.go index 293b4359b3412e06796a0c8857e51072d814b583..07658771a378ff03f88205c6e5e429a455129b87 100644 --- a/cmd/main.go +++ b/cmd/main.go @@ -20,7 +20,7 @@ func main() { app := cli.NewApp() app.Name = "sky_php_agent" app.Usage = "the skywalking trace sending agent" - app.Version = "3.3.1" + app.Version = "3.3.2" app.Flags = []cli.Flag{ &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"}, diff --git a/docs/install.md b/docs/install.md index 04cbafdad89a16b968345d2ccfee8269a8b1c493..30f955d090ca938a56bd0fb50732135499772449 100644 --- a/docs/install.md +++ b/docs/install.md @@ -18,9 +18,9 @@ You can run the following commands to install the SkyWalking PHP Agent. ## Install PHP Extension ```shell script -curl -Lo v3.3.1.tar.gz https://github.com/SkyAPM/SkyAPM-php-sdk/archive/v3.3.1.tar.gz -tar zxvf v3.3.1.tar.gz -cd SkyAPM-php-sdk-3.3.1 +curl -Lo v3.3.2.tar.gz https://github.com/SkyAPM/SkyAPM-php-sdk/archive/v3.3.2.tar.gz +tar zxvf v3.3.2.tar.gz +cd SkyAPM-php-sdk-3.3.2 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: ```shell script -cd SkyAPM-php-sdk-3.3.1 +cd SkyAPM-php-sdk-3.3.2 go build -o sky-php-agent cmd/main.go chmod +x sky-php-agent cp sky-php-agent /usr/local/bin diff --git a/package-template.xml b/package-template.xml index 382a392cb7e0bc5c54f75e7ca154726fe0844b83..28fc2968efef3361f9f443e42d1c0894b338214c 100644 --- a/package-template.xml +++ b/package-template.xml @@ -47,6 +47,19 @@ {{release}} + + + 3.3.2 + 3.3.2 + + + stable + stable + + + Fix bugs + + 3.3.1 diff --git a/package.xml b/package.xml index 2597990e19c9d0f2f6ee054ed2f260f83d7fc54c..b31b5db17c2d3e13e098e169c259a0ab2a1cd44d 100644 --- a/package.xml +++ b/package.xml @@ -15,10 +15,10 @@ yanlong@php.net yes - 2020-06-03 + 2020-06-05 - 3.3.1 - 3.3.1 + 3.3.2 + 3.3.2 stable @@ -166,6 +166,19 @@ + + + 3.3.2 + 3.3.2 + + + stable + stable + + + Fix bugs + + 3.3.1 diff --git a/php_skywalking.h b/php_skywalking.h index 4fb1c04f29b1b2e31ee0dc9c44f1311b70abc644..6552ccfe8949af6f61e1d0241b23f057761854e6 100644 --- a/php_skywalking.h +++ b/php_skywalking.h @@ -25,7 +25,7 @@ extern zend_module_entry skywalking_module_entry; #define phpext_skywalking_ptr &skywalking_module_entry #define SKY_DEBUG 0 -#define PHP_SKYWALKING_VERSION "3.3.1" /* Replace with version number for your extension */ +#define PHP_SKYWALKING_VERSION "3.3.2" /* Replace with version number for your extension */ #ifdef PHP_WIN32 # define PHP_SKYWALKING_API __declspec(dllexport)