Skip to content

Commit

Permalink
Update changelog and version to release v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
koenvervloesem committed Jul 26, 2020
1 parent d0a6738 commit 378c166
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.2.0
1.0.0
12 changes: 11 additions & 1 deletion docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Unreleased

Commits `since last release`_:

.. _`since last release`: https://github.com/rhasspy/rhasspy-hermes-app/compare/v0.2.0...HEAD
.. _`since last release`: https://github.com/rhasspy/rhasspy-hermes-app/compare/v1.0.0...HEAD

Added
=====
Expand All @@ -42,6 +42,16 @@ Fixed
Security
========

*********************
`1.0.0`_ - 2020-07-26
*********************

.. _`1.0.0`: https://github.com/rhasspy/rhasspy-hermes-app/releases/tag/v1.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`_ - 2020-07-19
Expand Down
2 changes: 1 addition & 1 deletion docs/usage.rst
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Try the example app `time_app.py`_ with the ``--help`` flag to see what settings
Asyncio
*******

Every function that you decorate with Rhasspy Hermes App should be defined with the `async` keyword. However, you don't have to use the async functionality.
Every function that you decorate with Rhasspy Hermes App should be defined with the ``async`` keyword. However, you don't have to use the async functionality.

For apps which are time intensive by e.g. using database queries or API calls, we recommend the use of asynchronous functions.
These allow your code to handle multiple requests at the same time and therefore cutting down on precious runtime.
Expand Down

0 comments on commit 378c166

Please sign in to comment.