0.4.0
What's Changed
- Pyproject.toml Fix by @eadwinCode in #79
Breaking Changes
-
Projects using
Pyproject.toml
as ellar metadata configurations should refactor the ellar config data by appendingtool.
For example:
[ellar] default = "example_project" [ellar.projects.example_project] project-name = "example_project" application = "example_project.server:application" config = "example_project.config:DevelopmentConfig" root-module = "example_project.root_module:ApplicationModule"
should be refactored to this
[tool.ellar] default = "example_project" [tool.ellar.projects.example_project] project-name = "example_project" application = "example_project.server:application" config = "example_project.config:DevelopmentConfig" root-module = "example_project.root_module:ApplicationModule"
Full Changelog: 0.3.8...0.4.0