Skip to content
This repository has been archived by the owner on Mar 25, 2022. It is now read-only.

Commit

Permalink
Bumped version number
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeffrey Kegler authored and Jeffrey Kegler committed Mar 26, 2012
1 parent 838efc2 commit a588f41
Show file tree
Hide file tree
Showing 8 changed files with 25 additions and 18 deletions.
7 changes: 7 additions & 0 deletions xs/Changes
Expand Up @@ -15,6 +15,13 @@

Revision history for Marpa::XS

1.007_000 Sun Mar 25 21:11:27 PDT 2012

* New developer's release.

* Fix memory allocation problem. This could occur
when too_many_earley_items was set 0.

1.006000 Mon Mar 12 08:57:43 PDT 2012

* Fix potential Windows installation issue
Expand Down
14 changes: 7 additions & 7 deletions xs/META.json
Expand Up @@ -75,15 +75,15 @@
"provides" : {
"Marpa::XS" : {
"file" : "lib/Marpa/XS.pm",
"version" : "1.006000"
"version" : "1.007_000"
},
"Marpa::XS::Grammar" : {
"file" : "lib/Marpa/XS/Grammar.pm",
"version" : "1.006000"
"version" : "1.007_000"
},
"Marpa::XS::Internal" : {
"file" : "lib/Marpa/XS/Internal.pm",
"version" : "1.006000"
"version" : "1.007_000"
},
"Marpa::XS::Internal::Grammar" : {
"file" : "lib/Marpa/XS/Grammar.pm",
Expand All @@ -99,18 +99,18 @@
},
"Marpa::XS::Recognizer" : {
"file" : "lib/Marpa/XS/Recognizer.pm",
"version" : "1.006000"
"version" : "1.007_000"
},
"Marpa::XS::Value" : {
"file" : "lib/Marpa/XS/Value.pm",
"version" : "1.006000"
"version" : "1.007_000"
}
},
"release_status" : "stable",
"release_status" : "testing",
"resources" : {
"repository" : {
"url" : "git://github.com/jeffreykegler/Marpa-XS.git"
}
},
"version" : "1.006000"
"version" : "1.007_000"
}
12 changes: 6 additions & 6 deletions xs/META.yml
Expand Up @@ -44,13 +44,13 @@ no_index:
provides:
Marpa::XS:
file: lib/Marpa/XS.pm
version: 1.006000
version: 1.007_000
Marpa::XS::Grammar:
file: lib/Marpa/XS/Grammar.pm
version: 1.006000
version: 1.007_000
Marpa::XS::Internal:
file: lib/Marpa/XS/Internal.pm
version: 1.006000
version: 1.007_000
Marpa::XS::Internal::Grammar:
file: lib/Marpa/XS/Grammar.pm
version: 0
Expand All @@ -62,10 +62,10 @@ provides:
version: 0
Marpa::XS::Recognizer:
file: lib/Marpa/XS/Recognizer.pm
version: 1.006000
version: 1.007_000
Marpa::XS::Value:
file: lib/Marpa/XS/Value.pm
version: 1.006000
version: 1.007_000
recommends:
PPI: 1.206
Test::Weaken: 3.004000
Expand All @@ -79,4 +79,4 @@ requires:
Task::Weaken: 0
resources:
repository: git://github.com/jeffreykegler/Marpa-XS.git
version: 1.006000
version: 1.007_000
2 changes: 1 addition & 1 deletion xs/lib/Marpa/XS.pm
Expand Up @@ -20,7 +20,7 @@ use strict;
use warnings;

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

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

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

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

use vars qw($VERSION $STRING_VERSION);
$VERSION = '1.006000';
$VERSION = '1.007_000';
$STRING_VERSION = $VERSION;
## no critic (BuiltinFunctions::ProhibitStringyEval)
$VERSION = eval $VERSION;
Expand Down

0 comments on commit a588f41

Please sign in to comment.