Skip to content

Commit d05dd71

Browse files
committed
Fixing issue rbit#15 and README.rst setup.py issue.
1 parent 41a71fc commit d05dd71

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

ChangeLog

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
2017-12-07 Angelo Moura <angelo.moura@sec4you.com.br>
2+
3+
Release 1.2.4
4+
5+
* dtls/openssl.py: Fixing issue #15
6+
* setup.py: Fixing issue on setup.py install can't find README.rst
7+
18
2017-04-27 Ray Brown <code@liquibits.com>
29

310
Release 1.2.3

dtls/openssl.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@
6565
libcrypto = CDLL(cryptodll_path)
6666
libssl = CDLL(ssldll_path)
6767
else:
68-
libcrypto = CDLL("libcrypto.so.1.0.0")
69-
libssl = CDLL("libssl.so.1.0.0")
68+
libcrypto = CDLL("libcrypto.so.1.0.2")
69+
libssl = CDLL("libssl.so.1.0.2")
7070

7171
#
7272
# Integer constants - exported

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
from setuptools import setup
3030

3131
NAME = "Dtls"
32-
VERSION = "1.2.3"
32+
VERSION = "1.2.4"
3333

3434
if __name__ == "__main__":
3535
# Full upload sequence for new version:
@@ -52,7 +52,7 @@
5252
with open("README.rst", "wb") as readme:
5353
readme.write(long_description)
5454
else:
55-
long_description = open("README.rst").read()
55+
long_description = open("README.md").read()
5656
top_package_plat_files_file = "dtls_package_files"
5757
if dist:
5858
if plat_dist:

0 commit comments

Comments
 (0)