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

Commit

Permalink
3.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
heyanlong committed Jun 3, 2020
1 parent a0700a2 commit d208318
Show file tree
Hide file tree
Showing 5 changed files with 36 additions and 10 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.0"
app.Version = "3.3.1"
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.0.tar.gz https://github.com/SkyAPM/SkyAPM-php-sdk/archive/v3.3.0.tar.gz
tar zxvf v3.3.0.tar.gz
cd SkyAPM-php-sdk-3.3.0
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
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.0
cd SkyAPM-php-sdk-3.3.1
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.1</release>
<api>3.3.1</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<notes>
Fix bugs
</notes>
</release>
<release>
<version>
<release>3.3.0</release>
Expand Down
21 changes: 17 additions & 4 deletions package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,18 @@
<email>[email protected]</email>
<active>yes</active>
</lead>
<date>2020-05-12</date>
<date>2020-06-03</date>
<version>
<release>3.3.0</release>
<api>3.3.0</api>
<release>3.3.1</release>
<api>3.3.1</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://www.apache.org/licenses/LICENSE-2.0.html">Apache2.0</license>
<notes>
Added memcache collection and skywalking 8.0 support
Fix bugs
</notes>
<contents>
<dir name="/">
Expand Down Expand Up @@ -166,6 +166,19 @@
<extsrcrelease />
<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>
<version>
<release>3.3.0</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.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
# define PHP_SKYWALKING_API __declspec(dllexport)
Expand Down

0 comments on commit d208318

Please sign in to comment.