diff --git a/CHANGELOG.md b/CHANGELOG.md index 8a32eba3b8..d76e8a10ac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.32.2 - 2018-12-09 +## Fixed +- Fix typo in missing events/inputs error message [#485](https://github.com/plotly/dash/pull/485) + ## 0.32.1 - 2018-12-07 ## Changed - Muted dash related missing props docstring from extract-meta warnings [#484](https://github.com/plotly/dash/pull/484) diff --git a/dash/dash.py b/dash/dash.py index a75d4c4c21..c26b818b01 100644 --- a/dash/dash.py +++ b/dash/dash.py @@ -734,7 +734,7 @@ def _validate_callback(self, output, inputs, state, events): Without `Input` or `Event` elements, this callback will never get called.\n (Subscribing to input components will cause the - callback to be called whenver their values + callback to be called whenever their values change and subscribing to an event will cause the callback to be called whenever the event is fired.) '''.format( diff --git a/dash/version.py b/dash/version.py index 68c3b13266..03de7de689 100644 --- a/dash/version.py +++ b/dash/version.py @@ -1 +1 @@ -__version__ = '0.32.1' +__version__ = '0.32.2'