This is an automated email from the git hooks/post-receive script. alexm pushed a commit to branch master in repository libapache-admin-config-perl.
commit 9545fcf58ff447475d78a2aefdc36d005624ae30 Author: Alex Muntada <[email protected]> Date: Sat Sep 9 02:09:37 2017 +0200 New upstream version 0.95 --- Changes | 9 +++++++++ META.yml | 2 +- README | 25 ++++++++++--------------- lib/Apache/Admin/Config.pm | 6 +++--- 4 files changed, 23 insertions(+), 19 deletions(-) diff --git a/Changes b/Changes index ea90fec..7faeed4 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,12 @@ +2011-08-20 Mark Whittington <[email protected]> + + * Release 0.95 + + * Fixed bug 40155 (https://rt.cpan.org/Ticket/Display.html?id=40155) + - t/value.t now passes all tests + + * Updated version in README from 0.93 to 0.95 + 2006-04-11 Daniel Muey <[email protected]> * Release 0.93 diff --git a/META.yml b/META.yml index fe85a12..7d0b807 100644 --- a/META.yml +++ b/META.yml @@ -1,7 +1,7 @@ # http://module-build.sourceforge.net/META-spec.html #XXXXXXX This is a prototype!!! It will change in the future!!! XXXXX# name: Apache-Admin-Config -version: 0.94 +version: 0.95 version_from: lib/Apache/Admin/Config.pm installdirs: site requires: diff --git a/README b/README index 75c1d61..4b3c0d4 100644 --- a/README +++ b/README @@ -1,4 +1,4 @@ -Apache::Admin::Config 0.94 +Apache::Admin::Config 0.95 ========================== INSTALLATION @@ -32,27 +32,22 @@ AUTHOR Olivier Poitrey <[email protected]> AVAILABILITY - The official FTP location is: + Available on CPAN at: - ftp://ftp.rhapsodyk.net/pub/devel/perl/Apache-Admin-Config-current.tar.g - z + http://search.cpan.org/~rsoliv/Apache-Admin-Config/ - Also available on CPAN. + Available on GitHub at: - anonymous CVS repository: + https://github.com/markwhi/Apache-Admin-Config - CVS_RSH=ssh cvs -d [email protected]:/devel co - Apache-Admin-Config + Homepage: - (supply an empty string as password) - - CVS repository on the web: - - http://www.rhapsodyk.net/cgi-bin/cvsweb/Apache-Admin-Config/ + http://rs.rhapsodyk.net/devel/apache-admin-config/ BUGS - Please send bug-reports to [email protected]. You can subscribe to - the list by sending an empty mail to [email protected]. + Please report bugs using the CPAN RT tracker: + + https://rt.cpan.org/Dist/Display.html?Name=Apache-Admin-Config LICENCE This library is free software; you can redistribute it and/or modify it diff --git a/lib/Apache/Admin/Config.pm b/lib/Apache/Admin/Config.pm index 06c3738..160ea19 100644 --- a/lib/Apache/Admin/Config.pm +++ b/lib/Apache/Admin/Config.pm @@ -4,7 +4,7 @@ use 5.005; use strict; use FileHandle; -$Apache::Admin::Config::VERSION = '0.94'; +$Apache::Admin::Config::VERSION = '0.95'; $Apache::Admin::Config::DEBUG = 0; =pod @@ -1239,7 +1239,7 @@ sub to_string carp "Use of uninitialized value in string eq"; } local $^W; - return($other ne $self->{value}); + return($other eq $self->{value}); } elsif($meth eq 'ne') { @@ -1257,7 +1257,7 @@ sub to_string carp "Use of uninitialized value in numeric eq (==)"; } local $^W; - return($other != $self->{value}); + return($other == $self->{value}); } elsif($meth eq '!=') { -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libapache-admin-config-perl.git _______________________________________________ Pkg-perl-cvs-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits
