Skip to content

Commit c38abd2

Browse files
committed
version 0.38
1 parent 98236a1 commit c38abd2

File tree

10 files changed

+17
-9
lines changed

10 files changed

+17
-9
lines changed

Changes

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
Revision history for Perl extension Win32::Unicode
22

3+
0.38 Wed Aug 8 01:31:58 2012
4+
[NEW FEATURES]
5+
- added same IO::Handle like methods (suggested by bokutin++)
6+
7+
[CHANGES]
8+
- Win32::Unicode::File::slurp more like File::Slurp::slurp.
9+
310
0.37 Tue Jul 9 02:37:07 2012
411
[BUG FIXES]
512
- fixed Win32::Unicode::File::read methods was crashing (reported by Thomas Eckardt)
@@ -16,6 +23,7 @@ Revision history for Perl extension Win32::Unicode
1623
- fixed cannot read binary file on read file.
1724
- fixed memory leak on read file.
1825
- fixed parse arguments logic on Win32::Unicode::Native.
26+
1927
[NEW FEATURES]
2028
- support offset on read().
2129

lib/Win32/Unicode.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use warnings;
55
use 5.008003;
66
use Exporter ();
77

8-
our $VERSION = '0.37';
8+
our $VERSION = '0.38';
99

1010
use Win32::Unicode::Console ':all';
1111
use Win32::Unicode::File ':all';

lib/Win32/Unicode/Console.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ our @EXPORT = qw/printW printfW warnW sayW dieW/;
1515
our @EXPORT_OK = qw//;
1616
our %EXPORT_TAGS = ('all' => [@EXPORT, @EXPORT_OK]);
1717

18-
our $VERSION = '0.37';
18+
our $VERSION = '0.38';
1919

2020
# default std handle
2121
my $STD_HANDLE = {

lib/Win32/Unicode/Constant.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use warnings;
55
use 5.008003;
66
use Exporter 'import';
77

8-
our $VERSION = '0.37';
8+
our $VERSION = '0.38';
99
our @EXPORT = grep { !/import|BEGIN|EXPORT/ && Win32::Unicode::Constant->can($_) } keys %Win32::Unicode::Constant::;
1010

1111
use constant CYGWIN => $^O eq 'cygwin';

lib/Win32/Unicode/Dir.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ our @EXPORT = qw/file_type file_size mkdirW rmdirW getcwdW chdirW findW findd
1919
our @EXPORT_OK = qw//;
2020
our %EXPORT_TAGS = ('all' => [@EXPORT, @EXPORT_OK]);
2121

22-
our $VERSION = '0.37';
22+
our $VERSION = '0.38';
2323

2424
# global vars
2525
our $cwd;

lib/Win32/Unicode/Error.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use warnings;
55
use 5.008003;
66
use Exporter 'import';
77

8-
our $VERSION = '0.37';
8+
our $VERSION = '0.38';
99

1010
use Win32::Unicode::Constant;
1111
use Win32::Unicode::Util;

lib/Win32/Unicode/File.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ our @EXPORT = qw/file_type file_size copyW moveW unlinkW touchW renameW statW ut
1919
our @EXPORT_OK = qw/filename_normalize slurp/;
2020
our %EXPORT_TAGS = ('all' => [@EXPORT, @EXPORT_OK]);
2121

22-
our $VERSION = '0.37';
22+
our $VERSION = '0.38';
2323

2424
my %FILE_TYPE_ATTRIBUTES = (
2525
s => FILE_ATTRIBUTE_SYSTEM,

lib/Win32/Unicode/Native.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use warnings;
55
use 5.008003;
66
use Exporter 'import';
77

8-
our $VERSION = '0.37';
8+
our $VERSION = '0.38';
99

1010
use Win32::Unicode::Console ':all';
1111
use Win32::Unicode::File ':all';

lib/Win32/Unicode/Process.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ our @EXPORT = qw/systemW execW/;
1515
our @EXPORT_OK = qw//;
1616
our %EXPORT_TAGS = ('all' => [@EXPORT, @EXPORT_OK]);
1717

18-
our $VERSION = '0.37';
18+
our $VERSION = '0.38';
1919

2020
# cmd path
2121
my $SHELL = do {

lib/Win32/Unicode/XS.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package Win32::Unicode::XS;
22
use strict;
33
use warnings;
44

5-
our $VERSION = '0.37';
5+
our $VERSION = '0.38';
66

77
use XSLoader;
88
XSLoader::load('Win32::Unicode', $VERSION);

0 commit comments

Comments
 (0)