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

Commit 631db83

Browse files
prepare new release
1 parent c8704d7 commit 631db83

File tree

10 files changed

+22
-16
lines changed

10 files changed

+22
-16
lines changed

MYMETA.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
"runtime" : {
3434
"requires" : {
3535
"Data::Dumper" : "2.161",
36+
"LWP::Protocol::https" : "6.07",
3637
"LWP::UserAgent" : "6.35",
3738
"MIME::Base64" : "0",
3839
"Time::Local" : "0"
@@ -48,6 +49,6 @@
4849
}
4950
},
5051
"release_status" : "stable",
51-
"version" : "1.11",
52+
"version" : "1.12",
5253
"x_serialization_backend" : "JSON::PP version 2.27400_02"
5354
}

MYMETA.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,9 @@ no_index:
2323
- inc
2424
requires:
2525
Data::Dumper: '2.161'
26+
LWP::Protocol::https: '6.07'
2627
LWP::UserAgent: '6.35'
2728
MIME::Base64: '0'
2829
Time::Local: '0'
29-
version: '1.11'
30+
version: '1.12'
3031
x_serialization_backend: 'CPAN::Meta::YAML version 0.018'

Makefile

+11-8
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
# CONFIGURE_REQUIRES => { }
1818
# LICENSE => q[mit]
1919
# NAME => q[WebService::Hexonet::Connector]
20-
# PREREQ_PM => { Data::Dumper=>q[2.161], 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] }
20+
# PREREQ_PM => { Data::Dumper=>q[2.161], LWP::Protocol::https=>q[6.07], 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] }
2121
# 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

@@ -58,11 +58,11 @@ DIRFILESEP = /
5858
DFSEP = $(DIRFILESEP)
5959
NAME = WebService::Hexonet::Connector
6060
NAME_SYM = WebService_Hexonet_Connector
61-
VERSION = 1.11
61+
VERSION = 1.12
6262
VERSION_MACRO = VERSION
63-
VERSION_SYM = 1_11
63+
VERSION_SYM = 1_12
6464
DEFINE_VERSION = -D$(VERSION_MACRO)=\"$(VERSION)\"
65-
XS_VERSION = 1.11
65+
XS_VERSION = 1.12
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.11
268+
DISTVNAME = WebService-Hexonet-Connector-1.12
269269

270270

271271
# --- MakeMaker macro section:
@@ -524,10 +524,11 @@ metafile : create_distdir
524524
$(NOECHO) $(ECHO) ' - inc' >> META_new.yml
525525
$(NOECHO) $(ECHO) 'requires:' >> META_new.yml
526526
$(NOECHO) $(ECHO) ' Data::Dumper: '\''2.161'\''' >> META_new.yml
527+
$(NOECHO) $(ECHO) ' LWP::Protocol::https: '\''6.07'\''' >> META_new.yml
527528
$(NOECHO) $(ECHO) ' LWP::UserAgent: '\''6.35'\''' >> META_new.yml
528529
$(NOECHO) $(ECHO) ' MIME::Base64: '\''0'\''' >> META_new.yml
529530
$(NOECHO) $(ECHO) ' Time::Local: '\''0'\''' >> META_new.yml
530-
$(NOECHO) $(ECHO) 'version: '\''1.11'\''' >> META_new.yml
531+
$(NOECHO) $(ECHO) 'version: '\''1.12'\''' >> META_new.yml
531532
$(NOECHO) $(ECHO) 'x_serialization_backend: '\''CPAN::Meta::YAML version 0.018'\''' >> META_new.yml
532533
-$(NOECHO) $(MV) META_new.yml $(DISTVNAME)/META.yml
533534
$(NOECHO) $(ECHO) Generating META.json
@@ -566,6 +567,7 @@ metafile : create_distdir
566567
$(NOECHO) $(ECHO) ' "runtime" : {' >> META_new.json
567568
$(NOECHO) $(ECHO) ' "requires" : {' >> META_new.json
568569
$(NOECHO) $(ECHO) ' "Data::Dumper" : "2.161",' >> META_new.json
570+
$(NOECHO) $(ECHO) ' "LWP::Protocol::https" : "6.07",' >> META_new.json
569571
$(NOECHO) $(ECHO) ' "LWP::UserAgent" : "6.35",' >> META_new.json
570572
$(NOECHO) $(ECHO) ' "MIME::Base64" : "0",' >> META_new.json
571573
$(NOECHO) $(ECHO) ' "Time::Local" : "0"' >> META_new.json
@@ -581,7 +583,7 @@ metafile : create_distdir
581583
$(NOECHO) $(ECHO) ' }' >> META_new.json
582584
$(NOECHO) $(ECHO) ' },' >> META_new.json
583585
$(NOECHO) $(ECHO) ' "release_status" : "stable",' >> META_new.json
584-
$(NOECHO) $(ECHO) ' "version" : "1.11",' >> META_new.json
586+
$(NOECHO) $(ECHO) ' "version" : "1.12",' >> META_new.json
585587
$(NOECHO) $(ECHO) ' "x_serialization_backend" : "JSON::PP version 2.27400_02"' >> META_new.json
586588
$(NOECHO) $(ECHO) '}' >> META_new.json
587589
-$(NOECHO) $(MV) META_new.json $(DISTVNAME)/META.json
@@ -867,11 +869,12 @@ testdb_static :: static pure_all
867869
# --- MakeMaker ppd section:
868870
# Creates a PPD (Perl Package Description) for a binary distribution.
869871
ppd :
870-
$(NOECHO) $(ECHO) '<SOFTPKG NAME="WebService-Hexonet-Connector" VERSION="1.11">' > WebService-Hexonet-Connector.ppd
872+
$(NOECHO) $(ECHO) '<SOFTPKG NAME="WebService-Hexonet-Connector" VERSION="1.12">' > WebService-Hexonet-Connector.ppd
871873
$(NOECHO) $(ECHO) ' <ABSTRACT>Connector library for the insanely fast L&lt;HEXONET Backend API|https://www.hexonet.net/&gt;.</ABSTRACT>' >> WebService-Hexonet-Connector.ppd
872874
$(NOECHO) $(ECHO) ' <AUTHOR>hexonet &lt;[email protected]&gt;</AUTHOR>' >> WebService-Hexonet-Connector.ppd
873875
$(NOECHO) $(ECHO) ' <IMPLEMENTATION>' >> WebService-Hexonet-Connector.ppd
874876
$(NOECHO) $(ECHO) ' <REQUIRE NAME="Data::Dumper" VERSION="2.161" />' >> WebService-Hexonet-Connector.ppd
877+
$(NOECHO) $(ECHO) ' <REQUIRE NAME="LWP::Protocol::https" VERSION="6.07" />' >> WebService-Hexonet-Connector.ppd
875878
$(NOECHO) $(ECHO) ' <REQUIRE NAME="LWP::UserAgent" VERSION="6.35" />' >> WebService-Hexonet-Connector.ppd
876879
$(NOECHO) $(ECHO) ' <REQUIRE NAME="MIME::Base64" />' >> WebService-Hexonet-Connector.ppd
877880
$(NOECHO) $(ECHO) ' <REQUIRE NAME="Time::Local" />' >> WebService-Hexonet-Connector.ppd

Makefile.PL

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ WriteMakefile(
55
NAME => 'WebService::Hexonet::Connector',
66
VERSION_FROM => 'lib/WebService/Hexonet/Connector.pm',
77
PREREQ_PM => {
8+
'LWP::Protocol::https' => 6.07,
89
'LWP::UserAgent' => 6.35,
910
'Time::Local' => 0,
1011
'MIME::Base64' => 0,

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.11';
8+
our $VERSION = '1.12';
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.11';
8+
our $VERSION = '1.12';
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
@@ -7,7 +7,7 @@ use WebService::Hexonet::Connector::Util;
77
use LWP::UserAgent;
88
use Data::Dumper;
99

10-
our $VERSION = '1.11';
10+
our $VERSION = '1.12';
1111

1212
sub new {
1313
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.11';
11+
our $VERSION = '1.12';
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.11';
10+
our $VERSION = '1.12';
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.11';
8+
our $VERSION = '1.12';
99

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

0 commit comments

Comments
 (0)