Skip to content

Commit

Permalink
Working addition of season, more robust solution coming soon.
Browse files Browse the repository at this point in the history
  • Loading branch information
marmanold committed Jun 26, 2018
1 parent 6a53be3 commit 641d0e1
Show file tree
Hide file tree
Showing 11 changed files with 238 additions and 49 deletions.
1 change: 1 addition & 0 deletions MANIFEST
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ t/05-readings.t
t/06-day-altName.t
t/07-day-feasts.t
t/08-day-includeFeasts.t
t/09-day-seasons.t
xt/01-pod.t
xt/02-pod-coverage.t
xt/03-minimum_perl_version.t
Expand Down
10 changes: 5 additions & 5 deletions MYMETA.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
},
"configure" : {
"requires" : {
"ExtUtils::MakeMaker" : "0",
"ExtUtils::MakeMaker" : "7.34",
"File::ShareDir::Install" : "0.11"
}
},
Expand All @@ -72,15 +72,15 @@
"provides" : {
"Date::Lectionary" : {
"file" : "lib/Date/Lectionary.pm",
"version" : "1.20180423"
"version" : "1.20180625"
},
"Date::Lectionary::Day" : {
"file" : "lib/Date/Lectionary/Day.pm",
"version" : "1.20180423"
"version" : "1.20180625"
},
"Date::Lectionary::Year" : {
"file" : "lib/Date/Lectionary/Year.pm",
"version" : "1.20180423"
"version" : "1.20180625"
}
},
"release_status" : "stable",
Expand All @@ -91,7 +91,7 @@
"web" : "https://github.com/marmanold/Date-Lectionary"
}
},
"version" : "v1.20180423",
"version" : "v1.20180625",
"x_serialization_backend" : "JSON::PP version 2.97001",
"x_twitter" : "https://www.twitter.com/marmanold/"
}
10 changes: 5 additions & 5 deletions MYMETA.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ build_requires:
Test::Pod::Coverage: '1.10'
Test::Version: '2.07'
configure_requires:
ExtUtils::MakeMaker: '0'
ExtUtils::MakeMaker: '7.34'
File::ShareDir::Install: '0.11'
dynamic_config: 0
generated_by: 'ExtUtils::MakeMaker version 7.34, CPAN::Meta::Converter version 2.150010'
Expand All @@ -38,13 +38,13 @@ no_index:
provides:
Date::Lectionary:
file: lib/Date/Lectionary.pm
version: '1.20180423'
version: '1.20180625'
Date::Lectionary::Day:
file: lib/Date/Lectionary/Day.pm
version: '1.20180423'
version: '1.20180625'
Date::Lectionary::Year:
file: lib/Date/Lectionary/Year.pm
version: '1.20180423'
version: '1.20180625'
requires:
Carp: '1.38'
Date::Advent: '1.20180422'
Expand All @@ -63,6 +63,6 @@ requires:
perl: '5.022'
resources:
repository: git://github.com/marmanold/Date-Lectionary.git
version: v1.20180423
version: v1.20180625
x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
x_twitter: https://www.twitter.com/marmanold/
8 changes: 4 additions & 4 deletions Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ WriteMakefile(
PL_FILES => {},
MIN_PERL_VERSION => 5.022000,
CONFIGURE_REQUIRES => {
'ExtUtils::MakeMaker' => 0,
'ExtUtils::MakeMaker' => '7.34',
'File::ShareDir::Install' => '0.11'
},
BUILD_REQUIRES => {
Expand Down Expand Up @@ -60,15 +60,15 @@ WriteMakefile(
provides => {
'Date::Lectionary' => {
file => 'lib/Date/Lectionary.pm',
version => '1.20180423'
version => '1.20180625'
},
'Date::Lectionary::Day' => {
file => 'lib/Date/Lectionary/Day.pm',
version => '1.20180423'
version => '1.20180625'
},
'Date::Lectionary::Year' => {
file => 'lib/Date/Lectionary/Year.pm',
version => '1.20180423'
version => '1.20180625'
},
},
keywords => [qw/ lectionary rcl acna readings christian liturgical /],
Expand Down
2 changes: 1 addition & 1 deletion README
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ NAME
Date::Lectionary - Readings for the Christian Lectionary

VERSION
Version 1.20180423
Version 1.20180625

SYNOPSIS
use Time::Piece;
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Date::Lectionary - Readings for the Christian Lectionary

# VERSION

Version 1.20180423
Version 1.20180625

# SYNOPSIS

Expand Down
2 changes: 1 addition & 1 deletion README.pod
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Date::Lectionary - Readings for the Christian Lectionary

=head1 VERSION

Version 1.20180423
Version 1.20180625


=cut
Expand Down
4 changes: 2 additions & 2 deletions lib/Date/Lectionary.pm
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ Date::Lectionary - Readings for the Christian Lectionary
=head1 VERSION
Version 1.20180423
Version 1.20180625
=cut

use version; our $VERSION = version->declare("v1.20180423");
use version; our $VERSION = version->declare("v1.20180625");

=head1 SYNOPSIS
Expand Down
Loading

0 comments on commit 641d0e1

Please sign in to comment.