8000 Merge branch 'release-0.4' · wumingcp-ps/msgpack-python@1cc3c57 · GitHub
[go: up one dir, main page]

Skip to content

Commit 1cc3c57

Browse files
committed
Merge branch 'release-0.4'
2 parents 83e7b0a + a9f4dad commit 1cc3c57

File tree

4 files changed

+24
-3
lines changed

4 files changed

+24
-3
lines changed

ChangeLog.rst

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
0.5.0
2-
=====
3-
:release date: TBD
2+
======
43

54
0.5 is important step toward 1.0. There are some deprecations.
65
Please read changes carefully.
@@ -20,9 +19,16 @@ Changes
2019

2120
* Pure Python implementation supports packing memoryview object.
2221

22+
23+
0.4.8
24+
=====
25+
:release date: 2016-07-29
26+
2327
Bugs fixed
2428
----------
2529

30+
* Calling ext_hook with wrong length. (Only on Windows, maybe. #203)
31+
2632

2733
0.4.7
2834
=====

Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,7 @@ clean:
2626
rm -rf build
2727
rm msgpack/*.so
2828
rm -rf msgpack/__pycache__
29+
30+
build-manylinux1-wheel:
31+
docker run --rm -ti -v `pwd`:/project -w /project quay.io/pypa/manylinux1_i686 bash docker/buildwheel.sh
32+
docker run --rm -ti -v `pwd`:/project -w /project quay.io/pypa/manylinux1_x86_64 bash docker/buildwheel.sh

docker/buildwheel.sh

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#!/bin/bash
2+
set -e -x
3+
4+
ARCH=`uname -p`
5+
echo "arch=$ARCH"
6+
7+
for V in cp35-cp35m cp34-cp34m cp27-cp27m cp27-cp27mu; do
8+
PYBIN=/opt/python/$V/bin
9+
rm -rf build/ # Avoid lib build by narrow Python is used by wide python
10+
$PYBIN/python setup.py bdist_wheel -p manylinux1_${ARCH}
11+
done

msgpack/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version = (0, 4, 7)
1+
version = (0, 4, 8)

0 commit comments

Comments
 (0)
0