Skip to content

Commit cc6c664

Browse files
committed
Bumped version to 0.10; updated Changes notes
1 parent 4fe9860 commit cc6c664

File tree

5 files changed

+16
-4
lines changed

5 files changed

+16
-4
lines changed

Changes

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

3+
0.10 2015/11/12 12:10:27
4+
[CHANGES]
5+
* Implement Device::Chip::Adapter 0.02:
6+
+ ->new_from_description constructor
7+
+ I2C protocol
8+
* Have Device::Chip::MPSSE be a standalone class that composes a
9+
Device::FTDI rather than subclassing it
10+
11+
[BUGFIXES]
12+
* Fix race condition where completed Device::FTDI::MPSSE write futures
13+
cause more writes that want more reads
14+
315
0.09 2015/11/10 00:29:32
416
[CHANGES]
517
* Implement a Device::Chip::Adapter class

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.09';
7+
our $VERSION = '0.10';
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.09';
14+
our $VERSION = '0.10';
1515

1616
=head1 NAME
1717

lib/Device/FTDI/MPSSE.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ package Device::FTDI::MPSSE;
88
use strict;
99
use warnings;
1010

11-
our $VERSION = '0.09';
11+
our $VERSION = '0.10';
1212

1313
=head1 NAME
1414

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.09';
12+
our $VERSION = '0.10';
1313

1414
=head1 NAME
1515

0 commit comments

Comments
 (0)