Version bump.
This commit is contained in:
parent
fe528b2050
commit
833ebc0b14
6 changed files with 17 additions and 7 deletions
10
CHANGELOG
10
CHANGELOG
|
@ -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
|
||||
|
|
2
Makefile
2
Makefile
|
@ -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
2
README
|
@ -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/
|
||||
|
|
4
setup.py
4
setup.py
|
@ -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.
|
||||
#
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -106,7 +106,7 @@ Overview
|
|||
"""
|
||||
|
||||
__author__ = "Hubert Pham"
|
||||
__version__ = "0.2.9"
|
||||
__version__ = "0.2.10"
|
||||
__docformat__ = "restructuredtext en"
|
||||
|
||||
import sys
|
||||
|
|
Loading…
Add table
Reference in a new issue