Skip to content

Commit bf46014

Browse files
authored
Fix bad unicode -> bytes parameter conversion (#8)
Fix bad unicode -> bytes parameter conversion. Updated changelog.
1 parent 6ee0997 commit bf46014

14 files changed

+2621
-1923
lines changed

.appveyor.yml

-5
Original file line numberDiff line numberDiff line change
@@ -105,16 +105,11 @@ test_script:
105105
after_test:
106106
# If tests are successful, create binary packages for the project.
107107
- "%CMD_IN_ENV% python setup.py bdist_wheel"
108-
- "%CMD_IN_ENV% python setup.py bdist_wininst"
109108
- mv dist/* .
110-
# Create 'none' ABI dist packages for use by older pip/wheel versions
111-
- python ci/copy_abi_dist.py *.whl
112109

113110
artifacts:
114111
# Archive the generated packages in the ci.appveyor.com build report.
115112
- path: "*.whl"
116-
- path: "*.exe"
117113

118114
deploy_script:
119115
- python ci/appveyor/pypi_upload.py *.whl
120-
- python ci/appveyor/pypi_upload.py *.exe

Changelog.rst

+14
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,20 @@
11
Change Log
22
=============
33

4+
0.5.5
5+
++++++
6+
7+
Changes
8+
--------
9+
10+
* Accept both bytes and unicode parameters in authentication with public key from memory.
11+
12+
Fixes
13+
------
14+
15+
* Unicode -> bytes parameter conversion would fail in some cases.
16+
17+
418
0.5.4
519
++++++
620

ssh2/agent.c

+74-58
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)