Version bump.

This commit is contained in:
Hubert Pham 2017-01-11 20:03:43 -08:00
parent fe528b2050
commit 833ebc0b14
6 changed files with 17 additions and 7 deletions

View file

@ -1,3 +1,13 @@
2017-01-10 Hubert Pham <hubert@mit.edu>
PyAudio 0.2.10
- Release the GIL during PortAudio I/O calls to avoid potential deadlock.
Thanks to Michael Graczyk for submitting a patch!
- Add a few automated unit tests.
2015-10-18 Hubert Pham <hubert@mit.edu>
PyAudio 0.2.9

View file

@ -2,7 +2,7 @@
.PHONY: docs clean build
VERSION := 0.2.9
VERSION := 0.2.10
PYTHON ?= python
BUILD_ARGS ?=
SPHINX ?= sphinx-build

2
README
View file

@ -1,5 +1,5 @@
======================================================================
PyAudio v0.2.9: Python Bindings for PortAudio.
PyAudio v0.2.10: Python Bindings for PortAudio.
======================================================================
See: http://people.csail.mit.edu/hubert/pyaudio/

View file

@ -1,5 +1,5 @@
"""
PyAudio v0.2.9: Python Bindings for PortAudio.
PyAudio v0.2.10: Python Bindings for PortAudio.
Copyright (c) 2006 Hubert Pham
@ -34,7 +34,7 @@ try:
except ImportError:
from distutils.core import setup, Extension
__version__ = "0.2.9"
__version__ = "0.2.10"
# distutils will try to locate and link dynamically against portaudio.
#

View file

@ -49,9 +49,9 @@ copyright = '2006, Hubert Pham'
# built documents.
#
# The short X.Y version.
version = '0.2.9'
version = '0.2.10'
# The full version, including alpha/beta/rc tags.
release = '0.2.9'
release = '0.2.10'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.

View file

@ -106,7 +106,7 @@ Overview
"""
__author__ = "Hubert Pham"
__version__ = "0.2.9"
__version__ = "0.2.10"
__docformat__ = "restructuredtext en"
import sys