-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
8 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,12 +3,12 @@ | |
# | ||
# Author: Slaven Rezic | ||
# | ||
# Copyright (C) 2006,2007,2008,2009,2010,2015,2020 Slaven Rezic. All rights reserved. | ||
# Copyright (C) 2006,2007,2008,2009,2010,2015,2020,2024 Slaven Rezic. All rights reserved. | ||
# This package is free software; you can redistribute it and/or | ||
# modify it under the same terms as Perl itself. | ||
# | ||
# Mail: [email protected] | ||
# WWW: http://www.rezic.de/eserte/ | ||
# WWW: https://github.com/eserte/p5-kwalify/ | ||
# | ||
|
||
package Kwalify; | ||
|
@@ -20,7 +20,7 @@ use base qw(Exporter); | |
use vars qw(@EXPORT_OK $VERSION); | ||
@EXPORT_OK = qw(validate); | ||
|
||
$VERSION = '1.23'; | ||
$VERSION = '1.24'; | ||
|
||
sub validate ($$) { | ||
my($schema, $data) = @_; | ||
|