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

Commit 9f4a2f3

Browse files
committed
4.1.0
1 parent a5ea367 commit 9f4a2f3

File tree

4 files changed

+21
-9
lines changed

4 files changed

+21
-9
lines changed

docs/install.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@ sudo ldconfig
5050

5151
## Install PHP Extension
5252
```shell script
53-
curl -Lo v4.0.0.tar.gz https://github.com/SkyAPM/SkyAPM-php-sdk/archive/v4.0.0.tar.gz
54-
tar zxvf v4.0.0.tar.gz
55-
cd SkyAPM-php-sdk-4.0.0
53+
curl -Lo v4.1.0.tar.gz https://github.com/SkyAPM/SkyAPM-php-sdk/archive/v4.1.0.tar.gz
54+
tar zxvf v4.1.0.tar.gz
55+
cd SkyAPM-php-sdk-4.1.0
5656
phpize && ./configure && make && make install
5757
```
5858

php_skywalking.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ extern zend_module_entry skywalking_module_entry;
4545
#define phpext_skywalking_ptr &skywalking_module_entry
4646

4747
#define SKY_DEBUG 0
48-
#define PHP_SKYWALKING_VERSION "4.0.0"
48+
#define PHP_SKYWALKING_VERSION "4.1.0"
4949

5050

5151
#define SKY_STRCMP(s1, s2) ((s1) != nullptr && strcmp(s1, s2) == 0)

scripts/package.py

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import xml.dom.minidom
22
import time, os
33

4-
version = '4.0.0'
4+
version = '4.1.0'
55

66
git = os.popen('git ls-files')
77
res = git.read()
@@ -64,7 +64,7 @@
6464
{'key': 'license', 'value': 'Apache2.0', 'attr': [
6565
{'key': 'uri', 'value': 'http://www.apache.org/licenses/LICENSE-2.0.html'}
6666
]},
67-
{'key': 'notes', 'value': 'newly designed agent, modular design'},
67+
{'key': 'notes', 'value': 'Fix bugs, Support swoole'},
6868
{'key': 'contents', 'child': [
6969
{'key': 'dir', 'attr': [
7070
{'key': 'name', 'value': '/'},
@@ -85,8 +85,20 @@
8585
{'key': 'changelog', 'child': [
8686
{'key': 'release', 'child': [
8787
{'key': 'version', 'child': [
88-
{'key': 'release', 'value': '4.4.0'},
89-
{'key': 'api', 'value': '4.4.0'}
88+
{'key': 'release', 'value': '4.1.0'},
89+
{'key': 'api', 'value': '4.1.0'}
90+
]},
91+
{'key': 'stability', 'child': [
92+
{'key': 'release', 'value': 'stable'},
93+
{'key': 'api', 'value': 'stable'}
94+
]},
95+
{'key': 'notes', 'value': 'Fix bugs, Support swoole'}
96+
]},
97+
98+
{'key': 'release', 'child': [
99+
{'key': 'version', 'child': [
100+
{'key': 'release', 'value': '4.0.0'},
101+
{'key': 'api', 'value': '4.0.0'}
90102
]},
91103
{'key': 'stability', 'child': [
92104
{'key': 'release', 'value': 'stable'},

scripts/version.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
VERSION=4.0.0
3+
VERSION=4.1.0
44
OS=`uname`
55

66
echo "OS: $OS"

0 commit comments

Comments
 (0)