diff --git a/.github/workflows/integration-gateway.yml b/.github/workflows/integration-gateway.yml index a531308..2998abe 100644 --- a/.github/workflows/integration-gateway.yml +++ b/.github/workflows/integration-gateway.yml @@ -72,7 +72,7 @@ jobs: - name: Run integration tests run: | pushd $GATEWAY_CHECKOUT_DIR - export GATEWAY_HOST=$(make get-gateway-endpoint -s) + export GATEWAY_HOST=$(make gateway-host -s) popd poetry run pytest tests/integrations/gateway -n $(nproc --all) env: diff --git a/CHANGELOG.md b/CHANGELOG.md index cecaefc..f15a1f0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,9 +5,15 @@ All notable changes to this project will be documented in this file. -## [0.4.0] - 2023-02-27 +## [0.0.4] - 2023-02-27 ### Fixed - Fixed a bug which prevented the use of multiple modules - Fixed env vars were being overwritten by config file + +## [1.0.0] - 2023-03-07 + +### Feature + +- Add support for self hosted serverless gateway diff --git a/pyproject.toml b/pyproject.toml index 9d19d41..a5265c1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "scw-serverless" -version = "0.0.4" +version = "1.0.0" description = "Framework for writing serverless APIs in Python, using Scaleway functions and containers." authors = ["Scaleway Serverless Team "] readme = "README.md"