Commit d05dd71 1 parent 41a71fc commit d05dd71 Copy full SHA for d05dd71
File tree 3 files changed +11
-4
lines changed
3 files changed +11
-4
lines changed Original file line number Diff line number Diff line change
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
+
1
8
2017-04-27 Ray Brown <code@liquibits.com>
2
9
3
10
Release 1.2.3
Original file line number Diff line number Diff line change 65
65
libcrypto = CDLL (cryptodll_path )
66
66
libssl = CDLL (ssldll_path )
67
67
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 " )
70
70
71
71
#
72
72
# Integer constants - exported
Original file line number Diff line number Diff line change 29
29
from setuptools import setup
30
30
31
31
NAME = "Dtls"
32
- VERSION = "1.2.3 "
32
+ VERSION = "1.2.4 "
33
33
34
34
if __name__ == "__main__" :
35
35
# Full upload sequence for new version:
52
52
with open ("README.rst" , "wb" ) as readme :
53
53
readme .write (long_description )
54
54
else :
55
- long_description = open ("README.rst " ).read ()
55
+ long_description = open ("README.md " ).read ()
56
56
top_package_plat_files_file = "dtls_package_files"
57
57
if dist :
58
58
if plat_dist :
You can’t perform that action at this time.
0 commit comments