Skip to content

Commit 0dff0a4

Browse files
committed
* increased version to 1.20_50
* included Changes entry * removed most RCS keywords * updated copyright year
1 parent fee0b1c commit 0dff0a4

File tree

7 files changed

+9
-12
lines changed

7 files changed

+9
-12
lines changed

Changes

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
Revision history for Perl extension Kwalify.
22

3+
1.20_50
4+
- fixed RT #48800 (unique in mappings did not work correctly)
5+
36
1.20
47
- test failure fix
58
- fixed RT #48714 (return early if not a hash was given)

README

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ schemafile and datafile may be YAML or JSON files.
2929

3030
COPYRIGHT AND LICENCE
3131

32-
Copyright (C) 2006,2007,2008 by Slaven Rezic
32+
Copyright (C) 2006,2007,2008,2009 by Slaven Rezic
3333

3434
This library is free software; you can redistribute it and/or modify
3535
it under the same terms as Perl itself, either Perl version 5.8.8 or,

lib/Kwalify.pm

+3-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
# -*- mode: cperl; coding: latin-2 -*-
22

33
#
4-
# $Id: Kwalify.pm,v 1.25 2009/09/14 19:45:34 eserte Exp $
54
# Author: Slaven Rezic
65
#
7-
# Copyright (C) 2006,2007,2008 Slaven Rezic. All rights reserved.
6+
# Copyright (C) 2006,2007,2008,2009 Slaven Rezic. All rights reserved.
87
# This package is free software; you can redistribute it and/or
98
# modify it under the same terms as Perl itself.
109
#
@@ -20,8 +19,7 @@ use base qw(Exporter);
2019
use vars qw(@EXPORT_OK $VERSION);
2120
@EXPORT_OK = qw(validate);
2221

23-
$VERSION = '1.20';
24-
# sprintf("%d.%02d", q$Revision: 1.25 $ =~ /(\d+)\.(\d+)/);
22+
$VERSION = '1.20_50';
2523

2624
BEGIN {
2725
if ($] < 5.006) {
@@ -550,7 +548,7 @@ Slaven Rezi
550548
551549
=head1 COPYRIGHT AND LICENSE
552550
553-
Copyright (C) 2006,2007,2008 by Slaven Reziæ
551+
Copyright (C) 2006,2007,2008,2009 by Slaven Reziæ
554552
555553
This library is free software; you can redistribute it and/or modify
556554
it under the same terms as Perl itself, either Perl version 5.8.8 or,

pkwalify

+2-3
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,9 @@
22
# -*- mode: cperl; coding: latin-2 -*-
33

44
#
5-
# $Id: pkwalify,v 1.11 2009/09/14 19:23:40 eserte Exp $
65
# Author: Slaven Rezic
76
#
8-
# Copyright (C) 2006,2007,2008 Slaven Rezic. All rights reserved.
7+
# Copyright (C) 2006,2007,2008,2009 Slaven Rezic. All rights reserved.
98
# This program is free software; you can redistribute it and/or
109
# modify it under the same terms as Perl itself.
1110
#
@@ -15,7 +14,7 @@
1514

1615
use strict;
1716
use vars qw($VERSION);
18-
$VERSION = sprintf("%d.%02d", q$Revision: 1.11 $ =~ /(\d+)\.(\d+)/);
17+
$VERSION = '1.12';
1918

2019
use Kwalify;
2120
use Getopt::Long;

t/Kwalify.t

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
# -*- perl -*-
33

44
#
5-
# $Id: Kwalify.t,v 1.14 2009/09/14 19:24:02 eserte Exp $
65
# Author: Slaven Rezic
76
#
87

t/compat.t

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
# -*- perl -*-
33

44
#
5-
# $Id: compat.t,v 1.2 2006/12/02 10:46:44 eserte Exp $
65
# Author: Slaven Rezic
76
#
87

t/pkwalify.t

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
# -*- perl -*-
33

44
#
5-
# $Id: pkwalify.t,v 1.12 2008/10/05 18:16:24 eserte Exp $
65
# Author: Slaven Rezic
76
#
87

0 commit comments

Comments
 (0)