You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by ke...@apache.org on 2020/07/25 05:37:52 UTC

[skywalking-python] branch release/0.3.0 created (now d809467)

This is an automated email from the ASF dual-hosted git repository.

kezhenxu94 pushed a change to branch release/0.3.0
in repository https://gitbox.apache.org/repos/asf/skywalking-python.git.


      at d809467  Add changelog for 0.2.0

This branch includes the following new commits:

     new d809467  Add changelog for 0.2.0

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[skywalking-python] 01/01: Add changelog for 0.2.0

Posted by ke...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

kezhenxu94 pushed a commit to branch release/0.3.0
in repository https://gitbox.apache.org/repos/asf/skywalking-python.git

commit d809467356fb5f46dc2d293ef9eaf29ed8c4bc44
Author: kezhenxu94 <ke...@163.com>
AuthorDate: Sat Jul 25 13:37:33 2020 +0800

    Add changelog for 0.2.0
---
 CHANGELOG.md             | 20 ++++++++++++++++++++
 setup.py                 |  4 +++-
 tools/env/setup_linux.sh |  2 +-
 3 files changed, 24 insertions(+), 2 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index fe4a7ef..49ddc67 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,25 @@
 ## Change Logs
 
+### 0.2.0
+
+- New plugins
+    - Kafka Plugin (#50)
+    - Tornado Plugin (#48)
+    - Redis Plugin (#44)
+    - Django Plugin (#37)
+    - PyMsql Plugin (#35)
+    - Flask plugin (#31)
+
+- API
+    - Add ignore_suffix Config (#40)
+    - Add missing `log` method and simplify test codes (#34)
+    - Add content equality of SegmentRef (#30)
+    - Validate carrier before using it (#29)
+
+- Chores and tests
+    - Test: print the diff list when validation failed (#46)
+    - Created venv builders for linux/windows and req flashers + use documentation (#38)
+
 ### 0.1.0
 
 - API: agent core APIs, check [the APIs and the examples](https://github.com/apache/skywalking-python/blob/3892cab9d5d2c03107cfb2b1c59a6c77c5c3cc35/README.md#api)
diff --git a/setup.py b/setup.py
index b69e07d..4f1d1d7 100644
--- a/setup.py
+++ b/setup.py
@@ -25,7 +25,7 @@ README = (HERE / "README.md").read_text()
 
 setup(
     name="apache-skywalking",
-    version="0.1.0",
+    version="0.2.0",
     description="Python Agent for Apache SkyWalking",
     long_description=README,
     long_description_content_type="text/markdown",
@@ -44,6 +44,8 @@ setup(
         "test": [
             "testcontainers",
             "pyyaml",
+            "django",
+            "flask",
             "Werkzeug",
             "pymysql",
             "redis",
diff --git a/tools/env/setup_linux.sh b/tools/env/setup_linux.sh
index 71c7887..a3cb289 100755
--- a/tools/env/setup_linux.sh
+++ b/tools/env/setup_linux.sh
@@ -23,4 +23,4 @@ echo "Virtual env created"
 
 ../../venv/bin/python -m pip install --upgrade pip
 echo "Pip upgrade complete. Installing packages from requirements.txt"
-../../venv/bin/python -m pip install ../../requirements.txt
+../../venv/bin/python -m pip install -r ../../requirements.txt