Skip to content

0.4.0

Compare
Choose a tag to compare
@eadwinCode eadwinCode released this 27 Mar 19:16
· 97 commits to master since this release
aab1286

What's Changed

Breaking Changes

  • Projects using Pyproject.toml as ellar metadata configurations should refactor the ellar config data by appending tool.

    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