Skip to content

Commit

Permalink
released version 7.65
Browse files Browse the repository at this point in the history
  • Loading branch information
Al Newkirk committed Jun 17, 2012
1 parent 951959f commit 4673e77
Show file tree
Hide file tree
Showing 8 changed files with 130 additions and 71 deletions.
8 changes: 8 additions & 0 deletions CHANGES
@@ -1,5 +1,13 @@
This file documents the revision history for the Perl library Validation::Class.

7.65 (2012-06-17)
* allow keywords to be called/used in OO fashion
* fixed V::C::Exporter which broke due to recent updates (needs tests)

7.59 (2012-06-16)
* builders are also passed all arguments given to the constructor
* fixed breakage in V::C::Exporter

7.58 (2012-06-16)
* changed structure for defining and using plugins
* allow the retrieval of instantiated plugin objects
Expand Down
3 changes: 2 additions & 1 deletion Makefile.PL
Expand Up @@ -24,9 +24,10 @@ my %WriteMakefileArgs = (
"Hash::Flatten" => 0,
"Hash::Merge" => 0,
"Module::Find" => 0,
"Module::Runtime" => 0,
"utf8" => 0
},
"VERSION" => "7.58",
"VERSION" => "7.65",
"test" => {
"TESTS" => "t/*.t t/regression/*.t t/regression/filters/*.t t/regression/validators/*.t"
}
Expand Down
10 changes: 3 additions & 7 deletions README
Expand Up @@ -3,7 +3,7 @@ NAME
Framework

VERSION
version 7.58
version 7.65

SYNOPSIS
package MyVal::User;
Expand Down Expand Up @@ -500,13 +500,9 @@ KEYWORDS
my ($self) = @_;

my @conn_str_parts =
('dbi', 'mysql', $self->name, $self->host, $self->port);
('dbi', 'mysql', map { $self->$_ } qw(name host port));

return (
join(':', @conn_str_parts),
$self->user,
$self->pass
)
return (join(':', @conn_str_parts), $self->user, $self->pass);

}
};
Expand Down
10 changes: 3 additions & 7 deletions README.mkdn
Expand Up @@ -4,7 +4,7 @@ Validation::Class - Self-Validating Object System and Data Validation Framework

# VERSION

version 7.58
version 7.65

# SYNOPSIS

Expand Down Expand Up @@ -603,14 +603,10 @@ constructs.

my @conn_str_parts =
('dbi', 'mysql', $self->name, $self->host, $self->port);
('dbi', 'mysql', map { $self->$_ } qw(name host port));

return (
join(':', @conn_str_parts),
$self->user,
$self->pass
)
return (join(':', @conn_str_parts), $self->user, $self->pass);

}
Expand Down
3 changes: 2 additions & 1 deletion dist.ini
Expand Up @@ -4,7 +4,7 @@ author = Al Newkirk <anewkirk@ana.io>
license = Perl_5
copyright_holder = Al Newkirk
copyright_year = 2011
version = 7.58
version = 7.65

[MetaResources]
homepage = https://github.com/alnewkirk/Validation-Class
Expand All @@ -19,6 +19,7 @@ Carp = 0
Hash::Flatten = 0
Hash::Merge = 0
Module::Find = 0
Module::Runtime = 0

[@Basic]

Expand Down

0 comments on commit 4673e77

Please sign in to comment.