- Clarified `documentation about the default MQTT port <https://rhasspy-hermes-app.readthedocs.io/en/latest/usage.html#connecting-to-rhasspy>`_. Pull request `90 <https://github.com/rhasspy/rhasspy-hermes-app/pull/90>`_ by `jasonhildebrand <https://github.com/jasonhildebrand>`_. - Added and explained `example app to continue a session <https://rhasspy-hermes-app.readthedocs.io/en/latest/usage.html#continuing-a-session>`_. - Added and explained `example app for notifications <https://rhasspy-hermes-app.readthedocs.io/en/latest/usage.html#notifying-the-user>`_.
Changed =======
- Updated dependency to rhasspy-hermes 0.6.1.
Fixed =====
- Added missing ``await`` in :meth:`rhasspyhermes_app.HermesApp.on_raw_message`. Pull request `89 <https://github.com/rhasspy/rhasspy-hermes-app/pull/89>`_ by `H3adcra5h <https://github.com/H3adcra5h>`_.
*********************
1.1.1
Changed =======
- Updated dependencies. The most important one is the upgrade to rhasspy-hermes 0.5.0.
*********************
1.1.0
Changed =======
- Command-line arguments can now also be passed as keyword arguments to the constructor of a :class:`rhasspyhermes_app.HermesApp` object. Note that arguments on the command line have precedence. Pull request `37 <https://github.com/rhasspy/rhasspy-hermes-app/pull/37>`_ by `JonahKr <https://github.com/JonahKr>`_ with help from `maxbachmann <https://github.com/maxbachmann>`_.
*********************
1.0.0
Changed =======
- All decorators of this library now only work with ``async`` functions. Pull request `16 <https://github.com/rhasspy/rhasspy-hermes-app/pull/16>`_ by `JonahKr <https://github.com/JonahKr>`_. Existing code should only add the ``async`` keyword before the function definition to keep the code valid. See :doc:`usage` for some examples.
*********************
0.2.0
Added =====
- Method :meth:`rhasspyhermes_app.HermesApp.notify` to send a dialogue notification. See `10 <https://github.com/rhasspy/rhasspy-hermes-app/issues/10>`_. - Decorator :meth:`rhasspyhermes_app.HermesApp.on_dialogue_intent_not_recognized` to act when the dialogue manager failed to recognize an intent. See `9 <https://github.com/rhasspy/rhasspy-hermes-app/issues/9>`_.
*********************
0.1.0
Added =====
- This is the first released version with decorators :meth:`rhasspyhermes_app.HermesApp.on_hotword`, :meth:`rhasspyhermes_app.HermesApp.on_intent`, :meth:`rhasspyhermes_app.HermesApp.on_intent_not_recognized` and :meth:`rhasspyhermes_app.HermesApp.on_topic`.