Skip to content

Commit 0f3722f

Browse files
committed
Bumped version to 0.13; updated Changes notes
1 parent e802b97 commit 0f3722f

File tree

5 files changed

+13
-4
lines changed

5 files changed

+13
-4
lines changed

Changes

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
Revision history for Device-FTDI
22

3+
0.13 2017/01/08 23:41:06
4+
[CHANGES]
5+
* Add debugging prints to SPI MPSSE subclass
6+
* Improved I²C transfer speed
7+
8+
[BUGFIXES]
9+
* Split writes longer than 1024 bytes into chunks to avoid stalling
10+
the device on buffer overruns
11+
312
0.12 2016/10/02 22:18:57
413
[CHANGES]
514
* Rename 'CS' to 'SS' in the SPI subclass

lib/Device/FTDI.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use 5.010;
44
use strict;
55
use warnings;
66

7-
our $VERSION = '0.12';
7+
our $VERSION = '0.13';
88

99
=head1 NAME
1010

lib/Device/FTDI/I2C.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ use base qw( Device::FTDI::MPSSE );
1111

1212
use utf8;
1313

14-
our $VERSION = '0.12';
14+
our $VERSION = '0.13';
1515

1616
=head1 NAME
1717

lib/Device/FTDI/MPSSE.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ use strict;
99
use warnings;
1010
use 5.010; # //
1111

12-
our $VERSION = '0.12';
12+
our $VERSION = '0.13';
1313

1414
# Testing on my FT232H board suggests that the MPSSE gets upset and stalls if
1515
# you write more than 1024 bytes at once.

lib/Device/FTDI/SPI.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ use strict;
99
use warnings;
1010
use base qw( Device::FTDI::MPSSE );
1111

12-
our $VERSION = '0.12';
12+
our $VERSION = '0.13';
1313

1414
=head1 NAME
1515

0 commit comments

Comments
 (0)