diff --git a/CHANGELOG.md b/CHANGELOG.md index dc794881..281754f1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,20 @@ This file includes a list of notable changes to this project. +## [0.7.0](https://github.com/neuralet/smart-social-distancing/releases/tag/0.7.0) +Released on 2021-04-13. + +#### Added: +* Partial (read-only) support for global Area ([#150](https://github.com/neuralet/smart-social-distancing/pull/150)) +* Occupancy rules for business hours ([#154](https://github.com/neuralet/smart-social-distancing/pull/154), [#160](https://github.com/neuralet/smart-social-distancing/pull/160)) +* Include processor capabilities in the config/info endpoint ([#159](https://github.com/neuralet/smart-social-distancing/pull/159)) +* Include authorization header in webhook logger ([#161](https://github.com/neuralet/smart-social-distancing/pull/161)) +* Support different models per camera ([#148](https://github.com/neuralet/smart-social-distancing/pull/148)) +* Estimate occupancy with In/Out metrics ([#157](https://github.com/neuralet/smart-social-distancing/pull/157)) + +#### Fixed: +* Add .keep in occupancy log directories ([#155](https://github.com/neuralet/smart-social-distancing/pull/155)) + ## [0.6.0](https://github.com/neuralet/smart-social-distancing/releases/tag/0.6.0) Released on 2021-03-23. diff --git a/constants.py b/constants.py index 175aefd3..8d1f42b7 100644 --- a/constants.py +++ b/constants.py @@ -1,4 +1,4 @@ -PROCESSOR_VERSION = "0.6.0" +PROCESSOR_VERSION = "0.7.0" # Entities AREAS = "areas" @@ -10,4 +10,3 @@ SOCIAL_DISTANCING = "social-distancing" FACEMASK_USAGE = "facemask-usage" IN_OUT = "in-out" -