Pārlūkot izejas kodu

Version 0.5.16, released on 10 december 2020

Bug fixes:

- Various bug fixes surrounding report registration. If your handlers returned only None or some incompatible values, it should now be much more graceful and helpful about it.
- Some bug fixes surrounding the placement of the resourceID within the oadrRegisterReport messages.
- Fixed parsing datetimes that don't contain microseconds; it is now also compatible with datetimes that only provide milliseconds.
Stan Janssen 4 gadi atpakaļ
vecāks
revīzija
c8a164c029
3 mainītis faili ar 2 papildinājumiem un 3 dzēšanām
  1. 1 1
      VERSION
  2. 0 1
      openleadr/service/report_service.py
  3. 1 1
      setup.py

+ 1 - 1
VERSION

@@ -1 +1 @@
-0.5.15
+0.5.16

+ 0 - 1
openleadr/service/report_service.py

@@ -137,7 +137,6 @@ class ReportService(VTNService):
             report_requests = result
             utils.validate_report_request_tuples(report_requests, full_mode=True)
 
-
         for i, report_request in enumerate(report_requests):
             if report_request is None or len(report_request) == 0 or all(rrq is None for rrq in report_request):
                 continue

+ 1 - 1
setup.py

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