Skip to content

Commit

Permalink
Released version 0.5.29
Browse files Browse the repository at this point in the history
This fixes various small bugs relating to stability and code examples.
  • Loading branch information
stan-janssen committed Feb 1, 2023
1 parent 2c71304 commit f73ae92
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.5.28
0.5.29
9 changes: 6 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,14 @@

from setuptools import setup

with open('README.md', 'r', encoding='utf-8') as fh:
long_description = fh.read()
with open('README.md', 'r', encoding='utf-8') as file:
long_description = file.read()

with open('VERSION', 'r', encoding='utf-8') as file:
version = file.read().strip()

setup(name='openleadr',
version='0.5.28',
version='0.5.29',
description='Python3 library for building OpenADR Clients (VENs) and Servers (VTNs)',
long_description=long_description,
long_description_content_type='text/markdown',
Expand Down

0 comments on commit f73ae92

Please sign in to comment.