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

Commit

Permalink
3.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
heyanlong committed Jun 5, 2020
1 parent f09a073 commit f03d35a
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 9 deletions.
2 changes: 1 addition & 1 deletion cmd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"},
Expand Down
8 changes: 4 additions & 4 deletions docs/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

Expand All @@ -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
Expand Down
13 changes: 13 additions & 0 deletions package-template.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,19 @@
<extsrcrelease />
<changelog>
{{release}}
<release>
<version>
<release>3.3.2</release>
<api>3.3.2</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<notes>
Fix bugs
</notes>
</release>
<release>
<version>
<release>3.3.1</release>
Expand Down
19 changes: 16 additions & 3 deletions package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@
<email>[email protected]</email>
<active>yes</active>
</lead>
<date>2020-06-03</date>
<date>2020-06-05</date>
<version>
<release>3.3.1</release>
<api>3.3.1</api>
<release>3.3.2</release>
<api>3.3.2</api>
</version>
<stability>
<release>stable</release>
Expand Down Expand Up @@ -166,6 +166,19 @@
<extsrcrelease />
<changelog>

<release>
<version>
<release>3.3.2</release>
<api>3.3.2</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<notes>
Fix bugs
</notes>
</release>
<release>
<version>
<release>3.3.1</release>
Expand Down
2 changes: 1 addition & 1 deletion php_skywalking.h
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit f03d35a

Please sign in to comment.