Skip to content

Commit f7c8d4f

Browse files
committed
Prepare version 0.921 for release
1 parent 6ee4587 commit f7c8d4f

File tree

8 files changed

+15
-7
lines changed

8 files changed

+15
-7
lines changed

CHANGELOG

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
0.921 2022-01-23
2+
3+
- Adjust test suite to work with lower Email::MIME versions and lower the
4+
dependency accordingly (by Axel Beckert)
5+
- Ignore the codepage attribute for message bodies that are marked as being
6+
unicode-encoded
7+
- Adjust full_structure test to work with all supported Email::MIME versions
8+
19
0.920 2020-09-11
210

311
- Use the "Internet Code Page" property to set the character set for text and

README

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ DESCRIPTION
1212

1313
VERSION
1414

15-
0.920
15+
0.921
1616

1717
INSTALLATION
1818

lib/Email/Outlook/Message.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ use strict;
5959
use warnings;
6060
use 5.006;
6161
use vars qw($VERSION);
62-
$VERSION = "0.920";
62+
$VERSION = "0.921";
6363

6464
use Email::Simple;
6565
use Email::MIME::Creator;

lib/Email/Outlook/Message/AddressInfo.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ it under the same terms as Perl itself.
3939
use strict;
4040
use warnings;
4141
use vars qw($VERSION);
42-
$VERSION = "0.920";
42+
$VERSION = "0.921";
4343
use Carp;
4444
use base 'Email::Outlook::Message::Base';
4545

lib/Email/Outlook/Message/Attachment.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ use strict;
3939
use warnings;
4040
use Carp;
4141
use vars qw($VERSION);
42-
$VERSION = "0.920";
42+
$VERSION = "0.921";
4343
use Email::MIME::ContentType;
4444
use base 'Email::Outlook::Message::Base';
4545

lib/Email/Outlook/Message/Base.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ use POSIX;
4343
use Carp;
4444
use OLE::Storage_Lite;
4545
use vars qw($VERSION);
46-
$VERSION = "0.920";
46+
$VERSION = "0.921";
4747

4848
my $DIR_TYPE = 1;
4949
my $FILE_TYPE = 2;

script/msgconvert

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ use Getopt::Long;
1212
use Pod::Usage;
1313
use File::Basename;
1414
use vars qw($VERSION);
15-
$VERSION = "0.920";
15+
$VERSION = "0.921";
1616

1717
# Setup command line processing.
1818
my $verbose = '';

script/oledump

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ use Getopt::Long;
3131
use Pod::Usage;
3232
use locale;
3333
use vars qw($VERSION);
34-
$VERSION = "0.920";
34+
$VERSION = "0.921";
3535

3636
#----------------------------------------------------------------
3737
# PrnItem: Displays PPS information

0 commit comments

Comments
 (0)