Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
bayashi committed Nov 5, 2018
1 parent 79f5250 commit e682a61
Show file tree
Hide file tree
Showing 6 changed files with 69 additions and 11 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
cover_db
META.yml
Makefile
blib
inc
Expand All @@ -8,4 +7,6 @@ MANIFEST
Makefile.old
nytprof.out
MANIFEST.bak
META.yml
MYMETA.*
*.sw[po]
4 changes: 4 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
Revision history for Text-Chord-Piano

0.062 Tue Nov 6 01:31:02 JST 2018
[NO CODE CHANGE]
- Fix test

0.061 Sat Feb 9 09:55:02 JST 2013
[NO CODE CHANGE]
- fixed test
Expand Down
1 change: 1 addition & 0 deletions MANIFEST
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@ t/01.jamin.t
xt/01_perlcritic.t
xt/02_pod-coverage.t
xt/03_pod.t
META.json
50 changes: 50 additions & 0 deletions META.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
{
"abstract" : "This module is a chord table generator of Piano by the text",
"author" : [
"Dai Okabayashi <bayashi@cpan.org>"
],
"dynamic_config" : 1,
"generated_by" : "Module::Build version 0.4224",
"license" : [
"perl_5"
],
"meta-spec" : {
"url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",
"version" : "2"
},
"name" : "Text-Chord-Piano",
"prereqs" : {
"build" : {
"requires" : {
"Test::More" : "0.88"
}
},
"configure" : {
"requires" : {
"Module::Build" : "0.42"
}
},
"runtime" : {
"requires" : {
"Carp" : "0",
"Class::Accessor::Fast" : "0",
"Music::Chord::Note" : "0.07",
"perl" : "v5.6.2"
}
}
},
"provides" : {
"Text::Chord::Piano" : {
"file" : "lib/Text/Chord/Piano.pm",
"version" : "0.062"
}
},
"release_status" : "stable",
"resources" : {
"license" : [
"http://dev.perl.org/licenses/"
]
},
"version" : "0.062",
"x_serialization_backend" : "JSON::PP version 2.27300"
}
20 changes: 11 additions & 9 deletions META.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,24 +3,26 @@ abstract: 'This module is a chord table generator of Piano by the text'
author:
- 'Dai Okabayashi <bayashi@cpan.org>'
build_requires:
Test::More: 0.88
Test::More: '0.88'
configure_requires:
Module::Build: 0.36
generated_by: 'Module::Build version 0.3607'
Module::Build: '0.42'
dynamic_config: 1
generated_by: 'Module::Build version 0.4224, CPAN::Meta::Converter version 2.150005'
license: perl
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
version: 1.4
version: '1.4'
name: Text-Chord-Piano
provides:
Text::Chord::Piano:
file: lib/Text/Chord/Piano.pm
version: 0.061
version: '0.062'
requires:
Carp: 0
Class::Accessor::Fast: 0
Music::Chord::Note: 0.07
Carp: '0'
Class::Accessor::Fast: '0'
Music::Chord::Note: '0.07'
perl: v5.6.2
resources:
license: http://dev.perl.org/licenses/
version: 0.061
version: '0.062'
x_serialization_backend: 'CPAN::Meta::YAML version 0.016'
2 changes: 1 addition & 1 deletion lib/Text/Chord/Piano.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use Music::Chord::Note;
use base qw(Class::Accessor::Fast);
__PACKAGE__->mk_accessors( qw(finger) );

our $VERSION = '0.061';
our $VERSION = '0.062';

my $cn = Music::Chord::Note->new();

Expand Down

0 comments on commit e682a61

Please sign in to comment.