Skip to content
This repository was archived by the owner on Jan 15, 2025. It is now read-only.

Commit de58cd8

Browse files
prepare new release
1 parent 7292b8a commit de58cd8

15 files changed

+71
-27
lines changed

MYMETA.json

+12-2
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,21 @@
3232
},
3333
"runtime" : {
3434
"requires" : {
35-
"LWP::UserAgent" : "6.35"
35+
"LWP::UserAgent" : "6.35",
36+
"MIME::Base64" : "0",
37+
"Time::Local" : "0"
38+
}
39+
},
40+
"test" : {
41+
"requires" : {
42+
"Scalar::Util" : "0",
43+
"Test::Exception" : "0.43",
44+
"Test::More" : "0",
45+
"Test::RequiresInternet" : "0.05"
3646
}
3747
}
3848
},
3949
"release_status" : "stable",
40-
"version" : "1.08",
50+
"version" : "1.09",
4151
"x_serialization_backend" : "JSON::PP version 2.27400_02"
4252
}

MYMETA.yml

+7-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ author:
44
- 'hexonet <[email protected]>'
55
build_requires:
66
ExtUtils::MakeMaker: '0'
7+
Scalar::Util: '0'
8+
Test::Exception: '0.43'
9+
Test::More: '0'
10+
Test::RequiresInternet: '0.05'
711
configure_requires:
812
ExtUtils::MakeMaker: '0'
913
dynamic_config: 0
@@ -19,5 +23,7 @@ no_index:
1923
- inc
2024
requires:
2125
LWP::UserAgent: '6.35'
22-
version: '1.08'
26+
MIME::Base64: '0'
27+
Time::Local: '0'
28+
version: '1.09'
2329
x_serialization_backend: 'CPAN::Meta::YAML version 0.018'

Makefile

+28-10
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
# CONFIGURE_REQUIRES => { }
1818
# LICENSE => q[mit]
1919
# NAME => q[WebService::Hexonet::Connector]
20-
# PREREQ_PM => { LWP::UserAgent=>q[6.35] }
21-
# TEST_REQUIRES => { }
20+
# PREREQ_PM => { LWP::UserAgent=>q[6.35], MIME::Base64=>q[0], Scalar::Util=>q[0], Test::Exception=>q[0.43], Test::More=>q[0], Test::RequiresInternet=>q[0.05], Time::Local=>q[0] }
21+
# TEST_REQUIRES => { Scalar::Util=>q[0], Test::Exception=>q[0.43], Test::More=>q[0], Test::RequiresInternet=>q[0.05] }
2222
# VERSION_FROM => q[lib/WebService/Hexonet/Connector.pm]
2323

2424
# --- MakeMaker post_initialize section:
@@ -58,11 +58,11 @@ DIRFILESEP = /
5858
DFSEP = $(DIRFILESEP)
5959
NAME = WebService::Hexonet::Connector
6060
NAME_SYM = WebService_Hexonet_Connector
61-
VERSION = 1.08
61+
VERSION = 1.09
6262
VERSION_MACRO = VERSION
63-
VERSION_SYM = 1_08
63+
VERSION_SYM = 1_09
6464
DEFINE_VERSION = -D$(VERSION_MACRO)=\"$(VERSION)\"
65-
XS_VERSION = 1.08
65+
XS_VERSION = 1.09
6666
XS_VERSION_MACRO = XS_VERSION
6767
XS_DEFINE_VERSION = -D$(XS_VERSION_MACRO)=\"$(XS_VERSION)\"
6868
INST_ARCHLIB = blib/arch
@@ -265,7 +265,7 @@ RCS_LABEL = rcs -Nv$(VERSION_SYM): -q
265265
DIST_CP = best
266266
DIST_DEFAULT = tardist
267267
DISTNAME = WebService-Hexonet-Connector
268-
DISTVNAME = WebService-Hexonet-Connector-1.08
268+
DISTVNAME = WebService-Hexonet-Connector-1.09
269269

270270

271271
# --- MakeMaker macro section:
@@ -505,6 +505,10 @@ metafile : create_distdir
505505
$(NOECHO) $(ECHO) ' - '\''hexonet <[email protected]>'\''' >> META_new.yml
506506
$(NOECHO) $(ECHO) 'build_requires:' >> META_new.yml
507507
$(NOECHO) $(ECHO) ' ExtUtils::MakeMaker: '\''0'\''' >> META_new.yml
508+
$(NOECHO) $(ECHO) ' Scalar::Util: '\''0'\''' >> META_new.yml
509+
$(NOECHO) $(ECHO) ' Test::Exception: '\''0.43'\''' >> META_new.yml
510+
$(NOECHO) $(ECHO) ' Test::More: '\''0'\''' >> META_new.yml
511+
$(NOECHO) $(ECHO) ' Test::RequiresInternet: '\''0.05'\''' >> META_new.yml
508512
$(NOECHO) $(ECHO) 'configure_requires:' >> META_new.yml
509513
$(NOECHO) $(ECHO) ' ExtUtils::MakeMaker: '\''0'\''' >> META_new.yml
510514
$(NOECHO) $(ECHO) 'dynamic_config: 1' >> META_new.yml
@@ -520,7 +524,9 @@ metafile : create_distdir
520524
$(NOECHO) $(ECHO) ' - inc' >> META_new.yml
521525
$(NOECHO) $(ECHO) 'requires:' >> META_new.yml
522526
$(NOECHO) $(ECHO) ' LWP::UserAgent: '\''6.35'\''' >> META_new.yml
523-
$(NOECHO) $(ECHO) 'version: '\''1.08'\''' >> META_new.yml
527+
$(NOECHO) $(ECHO) ' MIME::Base64: '\''0'\''' >> META_new.yml
528+
$(NOECHO) $(ECHO) ' Time::Local: '\''0'\''' >> META_new.yml
529+
$(NOECHO) $(ECHO) 'version: '\''1.09'\''' >> META_new.yml
524530
$(NOECHO) $(ECHO) 'x_serialization_backend: '\''CPAN::Meta::YAML version 0.018'\''' >> META_new.yml
525531
-$(NOECHO) $(MV) META_new.yml $(DISTVNAME)/META.yml
526532
$(NOECHO) $(ECHO) Generating META.json
@@ -558,12 +564,22 @@ metafile : create_distdir
558564
$(NOECHO) $(ECHO) ' },' >> META_new.json
559565
$(NOECHO) $(ECHO) ' "runtime" : {' >> META_new.json
560566
$(NOECHO) $(ECHO) ' "requires" : {' >> META_new.json
561-
$(NOECHO) $(ECHO) ' "LWP::UserAgent" : "6.35"' >> META_new.json
567+
$(NOECHO) $(ECHO) ' "LWP::UserAgent" : "6.35",' >> META_new.json
568+
$(NOECHO) $(ECHO) ' "MIME::Base64" : "0",' >> META_new.json
569+
$(NOECHO) $(ECHO) ' "Time::Local" : "0"' >> META_new.json
570+
$(NOECHO) $(ECHO) ' }' >> META_new.json
571+
$(NOECHO) $(ECHO) ' },' >> META_new.json
572+
$(NOECHO) $(ECHO) ' "test" : {' >> META_new.json
573+
$(NOECHO) $(ECHO) ' "requires" : {' >> META_new.json
574+
$(NOECHO) $(ECHO) ' "Scalar::Util" : "0",' >> META_new.json
575+
$(NOECHO) $(ECHO) ' "Test::Exception" : "0.43",' >> META_new.json
576+
$(NOECHO) $(ECHO) ' "Test::More" : "0",' >> META_new.json
577+
$(NOECHO) $(ECHO) ' "Test::RequiresInternet" : "0.05"' >> META_new.json
562578
$(NOECHO) $(ECHO) ' }' >> META_new.json
563579
$(NOECHO) $(ECHO) ' }' >> META_new.json
564580
$(NOECHO) $(ECHO) ' },' >> META_new.json
565581
$(NOECHO) $(ECHO) ' "release_status" : "stable",' >> META_new.json
566-
$(NOECHO) $(ECHO) ' "version" : "1.08",' >> META_new.json
582+
$(NOECHO) $(ECHO) ' "version" : "1.09",' >> META_new.json
567583
$(NOECHO) $(ECHO) ' "x_serialization_backend" : "JSON::PP version 2.27400_02"' >> META_new.json
568584
$(NOECHO) $(ECHO) '}' >> META_new.json
569585
-$(NOECHO) $(MV) META_new.json $(DISTVNAME)/META.json
@@ -849,11 +865,13 @@ testdb_static :: static pure_all
849865
# --- MakeMaker ppd section:
850866
# Creates a PPD (Perl Package Description) for a binary distribution.
851867
ppd :
852-
$(NOECHO) $(ECHO) '<SOFTPKG NAME="WebService-Hexonet-Connector" VERSION="1.08">' > WebService-Hexonet-Connector.ppd
868+
$(NOECHO) $(ECHO) '<SOFTPKG NAME="WebService-Hexonet-Connector" VERSION="1.09">' > WebService-Hexonet-Connector.ppd
853869
$(NOECHO) $(ECHO) ' <ABSTRACT>Connector library for the insanely fast L&lt;HEXONET Backend API|https://www.hexonet.net/&gt;.</ABSTRACT>' >> WebService-Hexonet-Connector.ppd
854870
$(NOECHO) $(ECHO) ' <AUTHOR>hexonet &lt;[email protected]&gt;</AUTHOR>' >> WebService-Hexonet-Connector.ppd
855871
$(NOECHO) $(ECHO) ' <IMPLEMENTATION>' >> WebService-Hexonet-Connector.ppd
856872
$(NOECHO) $(ECHO) ' <REQUIRE NAME="LWP::UserAgent" VERSION="6.35" />' >> WebService-Hexonet-Connector.ppd
873+
$(NOECHO) $(ECHO) ' <REQUIRE NAME="MIME::Base64" />' >> WebService-Hexonet-Connector.ppd
874+
$(NOECHO) $(ECHO) ' <REQUIRE NAME="Time::Local" />' >> WebService-Hexonet-Connector.ppd
857875
$(NOECHO) $(ECHO) ' <ARCHITECTURE NAME="x86_64-linux-gnu-thread-multi-5.26" />' >> WebService-Hexonet-Connector.ppd
858876
$(NOECHO) $(ECHO) ' <CODEBASE HREF="" />' >> WebService-Hexonet-Connector.ppd
859877
$(NOECHO) $(ECHO) ' </IMPLEMENTATION>' >> WebService-Hexonet-Connector.ppd

Makefile.PL

+13-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,19 @@ use 5.026000;
22
use ExtUtils::MakeMaker;
33

44
WriteMakefile(
5-
NAME => 'WebService::Hexonet::Connector',
6-
VERSION_FROM => 'lib/WebService/Hexonet/Connector.pm',
7-
PREREQ_PM => { 'LWP::UserAgent' => 6.35 },
5+
NAME => 'WebService::Hexonet::Connector',
6+
VERSION_FROM => 'lib/WebService/Hexonet/Connector.pm',
7+
PREREQ_PM => {
8+
'LWP::UserAgent' => 6.35,
9+
'Time::Local' => 0,
10+
'MIME::Base64' => 0
11+
},
12+
TEST_REQUIRES => {
13+
'Test::More' => 0,
14+
'Test::Exception' => 0.43,
15+
'Test::RequiresInternet' => 0.05,
16+
'Scalar::Util' => 0
17+
},
818
ABSTRACT_FROM => 'lib/WebService/Hexonet/Connector.pm',
919
AUTHOR => 'hexonet <[email protected]>',
1020
LICENSE => 'mit'

docs/connection.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<!--
66
generated by Pod::Simple::HTML v3.35,
77
using Pod::Simple::PullParser v3.35,
8-
under Perl v5.026000 at Tue Jul 24 14:30:29 2018 GMT.
8+
under Perl v5.026001 at Fri Aug 3 08:07:48 2018 GMT.
99
1010
If you want to change this HTML document, you probably shouldn't do that
1111
by changing it directly. Instead, see about changing the calling options

docs/connector.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<!--
66
generated by Pod::Simple::HTML v3.35,
77
using Pod::Simple::PullParser v3.35,
8-
under Perl v5.026000 at Tue Jul 24 14:30:29 2018 GMT.
8+
under Perl v5.026001 at Fri Aug 3 08:07:48 2018 GMT.
99
1010
If you want to change this HTML document, you probably shouldn't do that
1111
by changing it directly. Instead, see about changing the calling options

docs/hexonet.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<!--
66
generated by Pod::Simple::HTML v3.35,
77
using Pod::Simple::PullParser v3.35,
8-
under Perl v5.026000 at Tue Jul 24 14:30:29 2018 GMT.
8+
under Perl v5.026001 at Fri Aug 3 08:07:48 2018 GMT.
99
1010
If you want to change this HTML document, you probably shouldn't do that
1111
by changing it directly. Instead, see about changing the calling options

docs/response.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<!--
66
generated by Pod::Simple::HTML v3.35,
77
using Pod::Simple::PullParser v3.35,
8-
under Perl v5.026000 at Tue Jul 24 14:30:29 2018 GMT.
8+
under Perl v5.026001 at Fri Aug 3 08:07:48 2018 GMT.
99
1010
If you want to change this HTML document, you probably shouldn't do that
1111
by changing it directly. Instead, see about changing the calling options

docs/util.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<!--
66
generated by Pod::Simple::HTML v3.35,
77
using Pod::Simple::PullParser v3.35,
8-
under Perl v5.026000 at Tue Jul 24 14:30:29 2018 GMT.
8+
under Perl v5.026001 at Fri Aug 3 08:07:48 2018 GMT.
99
1010
If you want to change this HTML document, you probably shouldn't do that
1111
by changing it directly. Instead, see about changing the calling options

lib/WebService/Hexonet.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use strict;
55
use warnings;
66
use WebService::Hexonet::Connector;
77

8-
our $VERSION = '1.08';
8+
our $VERSION = '1.09';
99

1010
1;
1111

lib/WebService/Hexonet/Connector.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use strict;
55
use warnings;
66
use WebService::Hexonet::Connector::Connection;
77

8-
our $VERSION = '1.08';
8+
our $VERSION = '1.09';
99

1010
sub connect {
1111
return WebService::Hexonet::Connector::Connection->new(@_);

lib/WebService/Hexonet/Connector/Connection.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use WebService::Hexonet::Connector::Response;
66
use WebService::Hexonet::Connector::Util;
77
use LWP::UserAgent;
88

9-
our $VERSION = '1.08';
9+
our $VERSION = '1.09';
1010

1111
sub new {
1212
my $class = shift;

lib/WebService/Hexonet/Connector/Response.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ use overload
88
'@{}' => \&as_list,
99
;
1010

11-
our $VERSION = '1.08';
11+
our $VERSION = '1.09';
1212

1313
sub new {
1414
my $class = shift;

lib/WebService/Hexonet/Connector/Util.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ use base 'Exporter';
77
use Time::Local;
88
use MIME::Base64;
99

10-
our $VERSION = '1.08';
10+
our $VERSION = '1.09';
1111

1212
our @EXPORT = qw();
1313
our @EXPORT_OK = qw(sqltime timesql);

t/Hexonet-connector.t

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use Test::More;
55
use Test::Exception;
66
use Test::RequiresInternet ( 'coreapi.1api.net' => 80 );
77

8-
our $VERSION = '1.08';
8+
our $VERSION = '1.09';
99

1010
##########################
1111
# TESTS for Connection.pm

0 commit comments

Comments
 (0)