소스 검색

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 4 년 전
부모
커밋
08b0865251
2개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  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',