Skip to content

Commit

Permalink
Upped version number.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeffrey Kegler authored and Jeffrey Kegler committed Dec 25, 2011
1 parent da17885 commit 2f3dc9b
Show file tree
Hide file tree
Showing 10 changed files with 24 additions and 23 deletions.
1 change: 1 addition & 0 deletions r2/Changes
Expand Up @@ -15,6 +15,7 @@

Revision history for Marpa::R2

0.001_013 Sat Dec 24 18:27:02 PST 2011
0.001_012 Wed Dec 21 17:59:06 PST 2011
0.001_011 Sun Dec 18 18:38:25 PST 2011
0.001_010 Sat Dec 10 08:30:15 PST 2011
Expand Down
16 changes: 8 additions & 8 deletions r2/META.json
Expand Up @@ -85,19 +85,19 @@
"provides" : {
"Marpa::R2" : {
"file" : "lib/Marpa/R2.pm",
"version" : "0.001_012"
"version" : "0.001_013"
},
"Marpa::R2::Grammar" : {
"file" : "lib/Marpa/R2/Grammar.pm",
"version" : "0.001_012"
"version" : "0.001_013"
},
"Marpa::R2::HTML" : {
"file" : "html/lib/Marpa/R2/HTML.pm",
"version" : "0.001_012"
"version" : "0.001_013"
},
"Marpa::R2::HTML::Callback" : {
"file" : "html/lib/Marpa/R2/HTML/Callback.pm",
"version" : "0.001_012"
"version" : "0.001_013"
},
"Marpa::R2::HTML::Internal" : {
"file" : "html/lib/Marpa/R2/HTML.pm",
Expand All @@ -109,7 +109,7 @@
},
"Marpa::R2::Internal" : {
"file" : "lib/Marpa/R2/Internal.pm",
"version" : "0.001_012"
"version" : "0.001_013"
},
"Marpa::R2::Internal::Grammar" : {
"file" : "lib/Marpa/R2/Grammar.pm",
Expand All @@ -125,11 +125,11 @@
},
"Marpa::R2::Recognizer" : {
"file" : "lib/Marpa/R2/Recognizer.pm",
"version" : "0.001_012"
"version" : "0.001_013"
},
"Marpa::R2::Value" : {
"file" : "lib/Marpa/R2/Value.pm",
"version" : "0.001_012"
"version" : "0.001_013"
}
},
"release_status" : "testing",
Expand All @@ -138,5 +138,5 @@
"url" : "git://github.com/jeffreykegler/Marpa-R2.git"
}
},
"version" : "0.001_012"
"version" : "0.001_013"
}
16 changes: 8 additions & 8 deletions r2/META.yml
Expand Up @@ -51,16 +51,16 @@ no_index:
provides:
Marpa::R2:
file: lib/Marpa/R2.pm
version: 0.001_012
version: 0.001_013
Marpa::R2::Grammar:
file: lib/Marpa/R2/Grammar.pm
version: 0.001_012
version: 0.001_013
Marpa::R2::HTML:
file: html/lib/Marpa/R2/HTML.pm
version: 0.001_012
version: 0.001_013
Marpa::R2::HTML::Callback:
file: html/lib/Marpa/R2/HTML/Callback.pm
version: 0.001_012
version: 0.001_013
Marpa::R2::HTML::Internal:
file: html/lib/Marpa/R2/HTML.pm
version: 0
Expand All @@ -69,7 +69,7 @@ provides:
version: 0
Marpa::R2::Internal:
file: lib/Marpa/R2/Internal.pm
version: 0.001_012
version: 0.001_013
Marpa::R2::Internal::Grammar:
file: lib/Marpa/R2/Grammar.pm
version: 0
Expand All @@ -81,10 +81,10 @@ provides:
version: 0
Marpa::R2::Recognizer:
file: lib/Marpa/R2/Recognizer.pm
version: 0.001_012
version: 0.001_013
Marpa::R2::Value:
file: lib/Marpa/R2/Value.pm
version: 0.001_012
version: 0.001_013
recommends:
HTML::Entities: 3.68
HTML::Parser: 3.64
Expand All @@ -101,4 +101,4 @@ requires:
Task::Weaken: 0
resources:
repository: git://github.com/jeffreykegler/Marpa-R2.git
version: 0.001_012
version: 0.001_013
2 changes: 1 addition & 1 deletion r2/html/lib/Marpa/R2/HTML.pm
Expand Up @@ -20,7 +20,7 @@ use strict;
use warnings;

use vars qw( $VERSION $STRING_VERSION );
$VERSION = '0.001_012';
$VERSION = '0.001_013';
$STRING_VERSION = $VERSION;
## no critic (BuiltinFunctions::ProhibitStringyEval)
$VERSION = eval $VERSION;
Expand Down
2 changes: 1 addition & 1 deletion r2/html/lib/Marpa/R2/HTML/Callback.pm
Expand Up @@ -21,7 +21,7 @@ use integer;
package Marpa::R2::HTML::Callback;

use vars qw( $VERSION $STRING_VERSION );
$VERSION = '0.001_012';
$VERSION = '0.001_013';
$STRING_VERSION = $VERSION;
## use critic (BuiltinFunctions::ProhibitStringyEval)
$VERSION = eval $VERSION;
Expand Down
2 changes: 1 addition & 1 deletion r2/lib/Marpa/R2.pm
Expand Up @@ -20,7 +20,7 @@ use strict;
use warnings;

use vars qw($VERSION $STRING_VERSION @ISA $DEBUG);
$VERSION = '0.001_012';
$VERSION = '0.001_013';
$STRING_VERSION = $VERSION;
## no critic (BuiltinFunctions::ProhibitStringyEval)
$VERSION = eval $VERSION;
Expand Down
2 changes: 1 addition & 1 deletion r2/lib/Marpa/R2/Grammar.pm
Expand Up @@ -32,7 +32,7 @@ use integer;
use utf8;

use vars qw($VERSION $STRING_VERSION);
$VERSION = '0.001_012';
$VERSION = '0.001_013';
$STRING_VERSION = $VERSION;
## no critic(BuiltinFunctions::ProhibitStringyEval)
$VERSION = eval $VERSION;
Expand Down
2 changes: 1 addition & 1 deletion r2/lib/Marpa/R2/Internal.pm
Expand Up @@ -22,7 +22,7 @@ use integer;
use Carp;

use vars qw($VERSION $STRING_VERSION);
$VERSION = '0.001_012';
$VERSION = '0.001_013';
$STRING_VERSION = $VERSION;
## no critic (BuiltinFunctions::ProhibitStringyEval)
$VERSION = eval $VERSION;
Expand Down
2 changes: 1 addition & 1 deletion r2/lib/Marpa/R2/Recognizer.pm
Expand Up @@ -22,7 +22,7 @@ use integer;
use English qw( -no_match_vars );

use vars qw($VERSION $STRING_VERSION);
$VERSION = '0.001_012';
$VERSION = '0.001_013';
$STRING_VERSION = $VERSION;
## no critic(BuiltinFunctions::ProhibitStringyEval)
$VERSION = eval $VERSION;
Expand Down
2 changes: 1 addition & 1 deletion r2/lib/Marpa/R2/Value.pm
Expand Up @@ -21,7 +21,7 @@ use strict;
use integer;

use vars qw($VERSION $STRING_VERSION);
$VERSION = '0.001_012';
$VERSION = '0.001_013';
$STRING_VERSION = $VERSION;
## no critic (BuiltinFunctions::ProhibitStringyEval)
$VERSION = eval $VERSION;
Expand Down

0 comments on commit 2f3dc9b

Please sign in to comment.