Skip to content

Commit f3be50c

Browse files
committed
Release 0.3.0
1 parent a67466a commit f3be50c

File tree

2 files changed

+12
-3
lines changed

2 files changed

+12
-3
lines changed

NEWS.rst

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
Version 0.3.0 (2015-07-16):
2+
* `jack.RingBuffer`, implemented by Alexandru Stan
3+
* `jack.Client.set_timebase_callback()`, `jack.Client.transport_query()`,
4+
`jack.Client.transport_query_struct()`, with the help of Julien Acroute
5+
* `jack.Client.transport_state`, `jack.STOPPED`, `jack.ROLLING`,
6+
`jack.STARTING`, `jack.NETSTARTING`, `jack.position2dict()`
7+
* the *userdata* argument was removed from all callbacks
8+
* compatibility with the official JACK installer for Windows, thanks to Julien
9+
Acroute
10+
111
Version 0.2.0 (2015-02-23):
212
* MIDI support (`jack.MidiPort`, `jack.OwnMidiPort`,
313
`jack.Client.midi_inports`, `jack.Client.midi_outports`, ...)
@@ -6,8 +16,7 @@ Version 0.2.0 (2015-02-23):
616
* several examples (``chatty_client.py``, ``thru_client.py``,
717
``midi_monitor.py`` and ``midi_chords.py``)
818
* `jack.Port.is_physical`, courtesy of Alexandru Stan
9-
* `jack.Status` class
10-
* some bug-fixes and refactorings, some documentation improvements
19+
* `jack.Status`
1120

1221
Version 0.1.0 (2014-12-15):
1322
Initial release

jack.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
http://jackclient-python.rtfd.org/
2424
2525
"""
26-
__version__ = "0.2.0"
26+
__version__ = "0.3.0"
2727

2828
import errno as _errno
2929
import platform as _platform

0 commit comments

Comments
 (0)