File tree Expand file tree Collapse file tree 2 files changed +20
-3
lines changed
Expand file tree Collapse file tree 2 files changed +20
-3
lines changed Original file line number Diff line number Diff line change 1+ # Changelog
2+
3+ All notable changes to this project will be documented in this file.
4+
5+ <!-- The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -->
7+
8+ ## [ 0.4.0] - 2023-02-27
9+
10+ ### Fixed
11+
12+ - Fixed a bug which prevented the use of multiple modules
13+ - Fixed env vars were being overwritten by config file
Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " scw-serverless"
3- version = " 0.0.3 "
3+ version = " 0.0.4 "
44description = " Framework for writing serverless APIs in Python, using Scaleway functions and containers."
55authors = [
" Scaleway Serverless Team <[email protected] >" ]
66readme = " README.md"
@@ -26,8 +26,12 @@ classifiers = [
2626 " Programming Language :: Python :: 3.11" ,
2727]
2828
29- packages = [{include = " scw_serverless" }]
30- include = [" scw_serverless/**/*.yaml" , " scw_serverless/**/*.json" ]
29+ packages = [{ include = " scw_serverless" }]
30+ include = [
31+ " scw_serverless/**/*.yaml" ,
32+ " scw_serverless/**/*.json" ,
33+ " CHANGELOG.md" ,
34+ ]
3135
3236[tool .poetry .scripts ]
3337scw-serverless = " scw_serverless.cli:main"
You can’t perform that action at this time.
0 commit comments