Skip to content

Commit

Permalink
prepare for 1.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
chorny committed Sep 4, 2009
1 parent 1c33e9d commit fcb87f2
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 22 deletions.
45 changes: 30 additions & 15 deletions META.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,31 @@
# http://module-build.sourceforge.net/META-spec.html
#XXXXXXX This is a prototype!!! It will change in the future!!! XXXXX#
name: Smart-Comments
version: v1.0.3
version_from: lib/Smart/Comments.pm
installdirs: site
---
name: Smart-Comments
version: 1.0.4
author:
- 'Damian Conway <[email protected]>'
abstract: Comments that do more than just sit there
license: perl
resources:
license: http://dev.perl.org/licenses/
repository: http://github.com/chorny/smart-comments/tree/master
requires:
Data::Dumper: 0
Filter::Simple: 0
List::Util: 0
Test::More: 0
Text::Balanced: 0
version: 0

distribution_type: module
generated_by: ExtUtils::MakeMaker version 6.30
Data::Dumper: 0
Filter::Simple: 0.8
List::Util: 0
Text::Balanced: 2
perl: 5.008
version: 0
build_requires:
Test::More: 0
provides:
Smart::Comments:
file: lib/Smart/Comments.pm
version: 1.0.4
generated_by: Module::Build version 0.33
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
version: 1.4
keywords:
- Smart comments
- perl debugging
- development
5 changes: 3 additions & 2 deletions Makefile.PL
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
use 5.008;
use strict;
use warnings;
use ExtUtils::MakeMaker;
Expand All @@ -11,9 +12,9 @@ WriteMakefile(
PREREQ_PM => {
'Test::More' => 0,
'version' => 0,
'Text::Balanced' => 0,
'Text::Balanced' => 2.0,
'Data::Dumper' => 0,
'Filter::Simple' => 0,
'Filter::Simple' => 0.80,
'List::Util' => 0,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
Expand Down
2 changes: 1 addition & 1 deletion README
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Smart::Comments version 1.0.3
Smart::Comments version 1.0.4

Smart comments provide an easy way to insert debugging and tracking code
into a program. They can report the value of a variable, track the
Expand Down
8 changes: 4 additions & 4 deletions lib/Smart/Comments.pm
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package Smart::Comments;

use 5.008;
use version; $VERSION = qv('1.0.3');

use warnings;
use strict;
use warnings;
use version; our $VERSION = qv('1.0.4');

use Carp;

use List::Util qw(sum);
Expand Down Expand Up @@ -492,7 +492,7 @@ Smart::Comments - Comments that do more than just sit there
=head1 VERSION
This document describes Smart::Comments version 1.0.3
This document describes Smart::Comments version 1.0.4
=head1 SYNOPSIS
Expand Down

0 comments on commit fcb87f2

Please sign in to comment.