diff --git a/CHANGELOG.md b/CHANGELOG.md index 854a6f0..525de93 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Authorized users may now upload symbols via a web interface +## [0.4.1] - 2022-05-09 +### Fixed +- Change calling of `create_app()` with previously created app variable in main.py + ## [0.4.0] - 2022-04-25 ### Fixed - Migrations now include initial database create as a migration. (Date and time estimated based on first actual migration) diff --git a/main.py b/main.py index 26220ab..b8e8870 100644 --- a/main.py +++ b/main.py @@ -140,4 +140,4 @@ def load(self): "logger_class": StubbedGunicornLogger, "worker_class": "gevent", } - StandaloneApplication(create_app(), options).run() + StandaloneApplication(app, options).run()