Explorar el Código

Version 0.5.15, released on 15 december 2020

Bug fixes:

- Restore Python 3.7 compatibility (got broken in 0.5.14)

New features:

- You can now use a future instead of a callback function or coroutine when adding an event. This allows you to add and event and await the response in a single place.
- You can now add events that don't require a response, and the VEN will no longer respond to events that don't expect a response. In this case, your on_event handler may still, but does not need to, return an opt status. The returned opt status will be ignored in that case.
Stan Janssen hace 4 años
padre
commit
08b0865251
Se han modificado 2 ficheros con 3 adiciones y 3 borrados
  1. 1 1
      VERSION
  2. 2 2
      setup.py

+ 1 - 1
VERSION

@@ -1 +1 @@
-0.5.14
+0.5.15

+ 2 - 2
setup.py

@@ -20,8 +20,8 @@ with open('README.md', 'r') as fh:
     long_description = fh.read()
 
 setup(name='openleadr',
-      version='0.5.14',
-      description='Python library for dealing with OpenADR',
+      version='0.5.15',
+      description='Python3 library for building OpenADR Clients (VENs) and Servers (VTNs)',
       long_description=long_description,
       long_description_content_type='text/markdown',
       url='https://openleadr.org',