Skip to content

Commit 45d939d

Browse files
committed
Prepared to release
1 parent 5f946e7 commit 45d939d

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

Changes

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

3+
0.22 Tue Feb 15 11:46:27 MSK 2017
4+
- Added resolving of relative variable names.
5+
36
0.20 Sat Jan 28 15:50:37 MSK 2017
47
- Fixed the bug of the modification of a read-only value. Thanks to Andrey
58
Kuzmin.

README

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Config-Processor version 0.21_03
1+
Config-Processor version 0.22
22
=============================
33

44
INSTALLATION

lib/Config/Processor.pm

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use 5.008000;
44
use strict;
55
use warnings;
66

7-
our $VERSION = '0.21_03';
7+
our $VERSION = '0.22';
88

99
use File::Spec;
1010
use YAML::XS qw( LoadFile );
@@ -59,7 +59,7 @@ sub new {
5959
? $params{process_directives} : 1;
6060
$self->{export_env} = $params{export_env};
6161

62-
$self->{_merger} = Hash::Merge->new('CONFIG_PRECEDENT');
62+
$self->{_merger} = Hash::Merge->new('CONFIG_PRECEDENT');
6363
$self->{_config} = undef;
6464
$self->{_vars} = {};
6565
$self->{_seen_nodes} = {};
@@ -763,7 +763,7 @@ Eugene Ponizovsky, E<lt>[email protected]<gt>
763763
764764
=head1 COPYRIGHT AND LICENSE
765765
766-
Copyright (c) 2016, Eugene Ponizovsky, E<lt>[email protected]E<gt>.
766+
Copyright (c) 2016-2017, Eugene Ponizovsky, E<lt>[email protected]E<gt>.
767767
All rights reserved.
768768
769769
This module is free software; you can redistribute it and/or modify it under

0 commit comments

Comments
 (0)