Compare commits

...

2 Commits

Author SHA1 Message Date
2a16be401c bump version to 3.003 2015-04-01 13:53:09 +01:00
ea1e8640a3 fix use base to SOAP::WSDL::SOAP::Header 2015-04-01 13:44:16 +01:00
3 changed files with 8 additions and 3 deletions

View File

@@ -1,4 +1,9 @@
Release notes for SOAP::WSDL 3.003
-------
o. change the base module for SOAP::WSDL::SOAP::HeaderFault to SOAP::WSDL::SOAP::Header instead of inexisting module SOAP::WSDL::Header
Release notes for SOAP::WSDL 3.002 Release notes for SOAP::WSDL 3.002
o. change each file from having their own version number to referring to $SOAP::WSDL::VERSION since they aren't really individually versions anyway but just copies of that numbe o. change each file from having their own version number to referring to $SOAP::WSDL::VERSION since they aren't really individually versions anyway but just copies of that numbe

View File

@@ -14,7 +14,7 @@ use Class::Std::Fast constructor => 'none';
use SOAP::WSDL::XSD::Typelib::Builtin::anySimpleType; use SOAP::WSDL::XSD::Typelib::Builtin::anySimpleType;
use LWP::UserAgent; use LWP::UserAgent;
use version; our $VERSION = qv('3.002'); use version; our $VERSION = qv('3.003');
my %no_dispatch_of :ATTR(:name<no_dispatch>); my %no_dispatch_of :ATTR(:name<no_dispatch>);
my %wsdl_of :ATTR(:name<wsdl>); my %wsdl_of :ATTR(:name<wsdl>);

View File

@@ -1,7 +1,7 @@
package SOAP::WSDL::SOAP::HeaderFault; package SOAP::WSDL::SOAP::HeaderFault;
use strict; use strict;
use warnings; use warnings;
use base qw(SOAP::WSDL::Header); use base qw(SOAP::WSDL::SOAP::Header);
our $VERSION = $SOAP::WSDL::VERSION; our $VERSION = $SOAP::WSDL::VERSION;