Skip to content

Commit f73ae92

Browse files
committed
Released version 0.5.29
This fixes various small bugs relating to stability and code examples.
1 parent 2c71304 commit f73ae92

2 files changed

Lines changed: 7 additions & 4 deletions

File tree

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.5.28
1+
0.5.29

setup.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,14 @@
1616

1717
from setuptools import setup
1818

19-
with open('README.md', 'r', encoding='utf-8') as fh:
20-
long_description = fh.read()
19+
with open('README.md', 'r', encoding='utf-8') as file:
20+
long_description = file.read()
21+
22+
with open('VERSION', 'r', encoding='utf-8') as file:
23+
version = file.read().strip()
2124

2225
setup(name='openleadr',
23-
version='0.5.28',
26+
version='0.5.29',
2427
description='Python3 library for building OpenADR Clients (VENs) and Servers (VTNs)',
2528
long_description=long_description,
2629
long_description_content_type='text/markdown',

0 commit comments

Comments
 (0)