Skip to content

Commit

Permalink
0.102
Browse files Browse the repository at this point in the history
  • Loading branch information
kuerbis committed Feb 25, 2016
1 parent f7fa985 commit 40e0513
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
3 changes: 3 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
Revision history for Term::Choose


0.102 2016-02-25
- Update documentation: only ascii-charater strings are supported

0.101 2016-02-25
- Update documentation: wide characters not yet supported

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Term::Choose - Choose items from a list interactively.
VERSION
=======

Version 0.101
Version 0.102

SYNOPSIS
========
Expand Down Expand Up @@ -36,7 +36,7 @@ SYNOPSIS
DESCRIPTION
===========

`Term::Choose` does not (yet) support strings with wide characters.
`Term::Choose` supports only ascii-characters strings.

Choose interactively from a list of items.

Expand Down
6 changes: 3 additions & 3 deletions lib/Term/Choose.pm6
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use v6;
unit class Term::Choose;

my $VERSION = '0.101';
my $VERSION = '0.102';

use NCurses;

Expand Down Expand Up @@ -966,7 +966,7 @@ Term::Choose - Choose items from a list interactively.
=head1 VERSION
Version 0.101
Version 0.102
=head1 SYNOPSIS
Expand All @@ -992,7 +992,7 @@ Version 0.101
=head1 DESCRIPTION
C<Term::Choose> does not (yet) support strings with wide characters.
C<Term::Choose> supports only ascii-characters strings.
Choose interactively from a list of items.
Expand Down
2 changes: 1 addition & 1 deletion lib/Term/Choose/LineFold.pm6
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use v6;
unit class Term::Choose::LineFold;

my $VERSION = '0.101';
my $VERSION = '0.102';

use Terminal::WCWidth;

Expand Down

0 comments on commit 40e0513

Please sign in to comment.