From f03d35a6f2ec7740e8a0b07eef25115a82669a7d Mon Sep 17 00:00:00 2001 From: heyanlong Date: Fri, 5 Jun 2020 11:36:46 +0800 Subject: [PATCH] 3.3.2 --- cmd/main.go | 2 +- docs/install.md | 8 ++++---- package-template.xml | 13 +++++++++++++ package.xml | 19 ++++++++++++++++--- php_skywalking.h | 2 +- 5 files changed, 35 insertions(+), 9 deletions(-) diff --git a/cmd/main.go b/cmd/main.go index 293b435..0765877 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 04cbafd..30f955d 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 382a392..28fc296 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 2597990..b31b5db 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 4fb1c04..6552ccf 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) -- GitLab