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

Commit

Permalink
4.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
heyanlong committed Nov 13, 2020
1 parent a5ea367 commit 9f4a2f3
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 9 deletions.
6 changes: 3 additions & 3 deletions docs/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@ sudo ldconfig

## Install PHP Extension
```shell script
curl -Lo v4.0.0.tar.gz https://github.com/SkyAPM/SkyAPM-php-sdk/archive/v4.0.0.tar.gz
tar zxvf v4.0.0.tar.gz
cd SkyAPM-php-sdk-4.0.0
curl -Lo v4.1.0.tar.gz https://github.com/SkyAPM/SkyAPM-php-sdk/archive/v4.1.0.tar.gz
tar zxvf v4.1.0.tar.gz
cd SkyAPM-php-sdk-4.1.0
phpize && ./configure && make && make install
```

Expand Down
2 changes: 1 addition & 1 deletion php_skywalking.h
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ extern zend_module_entry skywalking_module_entry;
#define phpext_skywalking_ptr &skywalking_module_entry

#define SKY_DEBUG 0
#define PHP_SKYWALKING_VERSION "4.0.0"
#define PHP_SKYWALKING_VERSION "4.1.0"


#define SKY_STRCMP(s1, s2) ((s1) != nullptr && strcmp(s1, s2) == 0)
Expand Down
20 changes: 16 additions & 4 deletions scripts/package.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import xml.dom.minidom
import time, os

version = '4.0.0'
version = '4.1.0'

git = os.popen('git ls-files')
res = git.read()
Expand Down Expand Up @@ -64,7 +64,7 @@
{'key': 'license', 'value': 'Apache2.0', 'attr': [
{'key': 'uri', 'value': 'http://www.apache.org/licenses/LICENSE-2.0.html'}
]},
{'key': 'notes', 'value': 'newly designed agent, modular design'},
{'key': 'notes', 'value': 'Fix bugs, Support swoole'},
{'key': 'contents', 'child': [
{'key': 'dir', 'attr': [
{'key': 'name', 'value': '/'},
Expand All @@ -85,8 +85,20 @@
{'key': 'changelog', 'child': [
{'key': 'release', 'child': [
{'key': 'version', 'child': [
{'key': 'release', 'value': '4.4.0'},
{'key': 'api', 'value': '4.4.0'}
{'key': 'release', 'value': '4.1.0'},
{'key': 'api', 'value': '4.1.0'}
]},
{'key': 'stability', 'child': [
{'key': 'release', 'value': 'stable'},
{'key': 'api', 'value': 'stable'}
]},
{'key': 'notes', 'value': 'Fix bugs, Support swoole'}
]},

{'key': 'release', 'child': [
{'key': 'version', 'child': [
{'key': 'release', 'value': '4.0.0'},
{'key': 'api', 'value': '4.0.0'}
]},
{'key': 'stability', 'child': [
{'key': 'release', 'value': 'stable'},
Expand Down
2 changes: 1 addition & 1 deletion scripts/version.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

VERSION=4.0.0
VERSION=4.1.0
OS=`uname`

echo "OS: $OS"
Expand Down

0 comments on commit 9f4a2f3

Please sign in to comment.