Skip to content

Commit 6c4777c

Browse files
committed
chore: release version 0.11.0
1 parent 7643adf commit 6c4777c

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/ci-multiplatform.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -110,29 +110,29 @@ jobs:
110110
echo "Platform: $RUNNER_OS"
111111
echo "Python: ${{ matrix.python-version }}"
112112
echo ""
113-
113+
114114
# Create benchmark server
115115
cat > /tmp/bench_server.py << 'EOF'
116116
from bustapi import BustAPI
117117
app = BustAPI()
118-
118+
119119
@app.turbo_route("/")
120120
def index():
121121
return "Hello, World!"
122-
122+
123123
@app.turbo_route("/json")
124124
def json_endpoint():
125125
return {"hello": "world", "framework": "BustAPI"}
126-
126+
127127
if __name__ == "__main__":
128128
app.run(host="127.0.0.1", port=8888, workers=4, debug=False)
129129
EOF
130-
130+
131131
# Start server
132132
$VENV_PY /tmp/bench_server.py &
133133
SERVER_PID=$!
134134
sleep 5
135-
135+
136136
# Run benchmark with oha
137137
echo "--- Benchmark with oha (10s, 4 threads, 50 connections) ---"
138138
echo ""
@@ -141,7 +141,7 @@ jobs:
141141
echo ""
142142
echo "JSON endpoint (/json):"
143143
oha -z 10s -c 50 --no-tui http://127.0.0.1:8888/json
144-
144+
145145
# Cleanup
146146
kill $SERVER_PID 2>/dev/null || true
147147
echo ""

python/bustapi/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def hello():
2222
import sys
2323
from http import HTTPStatus
2424

25-
__version__ = "0.11.0-rc2"
25+
__version__ = "0.11.0"
2626
__author__ = "BustAPI" # with GrandpaEJ
2727
__email__ = ""
2828

0 commit comments

Comments
 (0)