Skip to content

Commit 62a9e13

Browse files
committed
Prepare for Win32-0.58 release
1 parent a089343 commit 62a9e13

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

Changes

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
Revision history for the Perl extension Win32.
22

3+
0.58 [2022-01-17]
4+
- add Win32::HttpGetFile (thanks to Craig Berry for the implementation
5+
and Tomasz Konojacki for code review) [PR/30]
6+
- skip failing Unicode.t on Cygwin because cwd() no longer returns an
7+
ANSI (short) path there.
8+
- Fixed test 14,15 of GetFullPathName.t when package is unpacked in a
9+
top level folder (thanks to Jianhong Feng) [PR/20]
10+
311
0.57 [2021-03-10]
412
- fix calling convention for PFNRegGetValueA [PR/28]
513

META.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
--- #YAML:1.0
22
name: Win32
33
abstract: Interfaces to some Win32 API Functions
4-
version: 0.57
4+
version: 0.58
55
author:
6-
- Jan Dubois <[email protected]>
6+
- Jan Dubois <[email protected]>
77
license: perl
88
requires:
99
perl: 5.006

Win32.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ package Win32;
88
require DynaLoader;
99

1010
@ISA = qw|Exporter DynaLoader|;
11-
$VERSION = '0.57';
11+
$VERSION = '0.58';
1212
$XS_VERSION = $VERSION;
1313
$VERSION = eval $VERSION;
1414

0 commit comments

Comments
 (0)