Skip to content

Commit 885115b

Browse files
authored
feat: release 0.2.0 (#46)
1 parent 898ada4 commit 885115b

File tree

4 files changed

+19
-3
lines changed

4 files changed

+19
-3
lines changed

CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ title: Changelog
2424
## Table of Contents
2525

2626
- [0.1.0](#010)
27+
- [0.2.0](#020)
2728

2829
## 0.1.0
2930

@@ -37,3 +38,18 @@ This release mainly provides basic features and adds test cases.
3738
- supported custom `stop` and `rewrite` plugin development.
3839

3940
[Back to TOC](#table-of-contents)
41+
42+
## 0.2.0
43+
44+
This release mainly refactors the operation objects of request/response and the way of automatic loading of plugins for
45+
more efficient plugin development.
46+
47+
### Core
48+
49+
- `Request` and `Response` operation object refactoring.
50+
- Plugin `auto registr` and `auto loading` refactoring.
51+
- Supports getting the `request body` and `Nginx built-in variables` in the plugin.
52+
- Specification and unifies the input and output of RPC requests.
53+
- Inheritance interface for specification plugins.
54+
55+
[Back to TOC](#table-of-contents)

bin/py-runner

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ from apisix.runner.server.server import Server as RunnerServer
2424
from apisix.runner.server.config import Config as RunnerConfig
2525
from apisix.runner.plugin.core import PluginProcess as RunnerPlugin
2626

27-
RUNNER_VERSION = "0.1.0"
27+
RUNNER_VERSION = "0.2.0"
2828

2929

3030
@click.group()

docs/en/latest/config.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": 0.1,
2+
"version": 0.2,
33
"sidebar": [
44
{
55
"type": "doc",

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
from setuptools import setup, find_packages
1919

20-
__version__ = "0.1.0"
20+
__version__ = "0.2.0"
2121

2222
requirements = open('requirements.txt').readlines()
2323

0 commit comments

Comments
 (0)