Merge branch 'release-0.4'

This commit is contained in:
INADA Naoki 2016-07-30 11:38:00 +09:00
commit 1cc3c574a2
4 changed files with 24 additions and 3 deletions

View file

@ -1,6 +1,5 @@
0.5.0
=====
:release date: TBD
======
0.5 is important step toward 1.0. There are some deprecations.
Please read changes carefully.
@ -20,9 +19,16 @@ Changes
* Pure Python implementation supports packing memoryview object.
0.4.8
=====
:release date: 2016-07-29
Bugs fixed
----------
* Calling ext_hook with wrong length. (Only on Windows, maybe. #203)
0.4.7
=====

View file

@ -26,3 +26,7 @@ clean:
rm -rf build
rm msgpack/*.so
rm -rf msgpack/__pycache__
build-manylinux1-wheel:
docker run --rm -ti -v `pwd`:/project -w /project quay.io/pypa/manylinux1_i686 bash docker/buildwheel.sh
docker run --rm -ti -v `pwd`:/project -w /project quay.io/pypa/manylinux1_x86_64 bash docker/buildwheel.sh

11
docker/buildwheel.sh Normal file
View file

@ -0,0 +1,11 @@
#!/bin/bash
set -e -x
ARCH=`uname -p`
echo "arch=$ARCH"
for V in cp35-cp35m cp34-cp34m cp27-cp27m cp27-cp27mu; do
PYBIN=/opt/python/$V/bin
rm -rf build/ # Avoid lib build by narrow Python is used by wide python
$PYBIN/python setup.py bdist_wheel -p manylinux1_${ARCH}
done

View file

@ -1 +1 @@
version = (0, 4, 7)
version = (0, 4, 8)