Skip to content

Commit

Permalink
0.21.15
Browse files Browse the repository at this point in the history
  • Loading branch information
scottbelden committed Dec 10, 2018
1 parent 2a6a8b3 commit c5d0692
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis_build_wheel.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ TRAVIS_PYTHON_VERSION=${TRAVIS_PYTHON_VERSION/.}
FASTAVRO_USE_CYTHON=1 /opt/python/*${TRAVIS_PYTHON_VERSION}*m/bin/python setup.py bdist_wheel

# Also produce a wheel for wide-char distributions.
if ls "/opt/python/*${TRAVIS_PYTHON_VERSION}*mu" &> /dev/null; then
if ls /opt/python/*${TRAVIS_PYTHON_VERSION}*mu &> /dev/null; then
FASTAVRO_USE_CYTHON=1 /opt/python/*${TRAVIS_PYTHON_VERSION}*mu/bin/python setup.py bdist_wheel
fi

Expand Down
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2018-12-10 version 0.21.15
* Deprecate schema attribute on the reader class (@scottbelden in PR #305)
* Publish wheel for py27mu (@brianmartin in PR #306)

2018-11-17 version 0.21.14
* Ensure maps do not validate as arrays (@scottbelden in PR #304)

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, 21, 14)
__version_info__ = (0, 21, 15)
__version__ = '%s.%s.%s' % __version_info__


Expand Down

0 comments on commit c5d0692

Please sign in to comment.