Skip to content

Commit

Permalink
version 0.17.9
Browse files Browse the repository at this point in the history
  • Loading branch information
scottbelden committed Mar 1, 2018
1 parent baff228 commit 82fea18
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .travis_build_wheel.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,7 @@ TRAVIS_PYTHON_VERSION=${TRAVIS_PYTHON_VERSION/.}

/opt/python/*${TRAVIS_PYTHON_VERSION}*m/bin/pip install cython
FASTAVRO_USE_CYTHON=1 /opt/python/*${TRAVIS_PYTHON_VERSION}*m/bin/python setup.py bdist_wheel

for whl in dist/*.whl; do
auditwheel repair "$whl" -w dist
done
3 changes: 3 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2018-03-01 version 0.17.9
* Ensure strings are not treated as arrays in union validation (@scottbelden in PR #167)

2018-02-12 version 0.17.8
* Ensure acquaint_schema acquaints to both READERS and WRITERS (@scottbelden in PR #160)
* Remove ujson (@scottbelden in PR #161)
Expand Down
2 changes: 1 addition & 1 deletion fastavro/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
writer(out, schema, records)
'''

__version_info__ = (0, 17, 8)
__version_info__ = (0, 17, 9)
__version__ = '%s.%s.%s' % __version_info__


Expand Down

0 comments on commit 82fea18

Please sign in to comment.