From 6a811aa9bbb04563eab52a510fa055243a702279 Mon Sep 17 00:00:00 2001 From: Slaven Rezic Date: Sun, 21 Jul 2024 20:52:45 +0200 Subject: [PATCH] 1.24 --- Changes | 5 +++++ lib/Kwalify.pm | 6 +++--- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/Changes b/Changes index 689c560..80f0263 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,10 @@ Revision history for Perl extension Kwalify. +1.24 2024-07-21 + - doc improvements (by guillemj) + - ci changes (swich from travis-ci to github actions) + - tests: allow cyclic_refs when YAML::PP is used + 1.23 2020-02-21 - stable release with all changes in 1.22_90 diff --git a/lib/Kwalify.pm b/lib/Kwalify.pm index 62d8d69..653aad9 100644 --- a/lib/Kwalify.pm +++ b/lib/Kwalify.pm @@ -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: srezic@cpan.org -# 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) = @_;