diff --git a/lib/compiler.js b/lib/compiler.js index 243b3f2..0d9c6b6 100644 --- a/lib/compiler.js +++ b/lib/compiler.js @@ -3,7 +3,7 @@ * * Compiler that can compile BNF syntax into bnf.js scripts. * - * @version 0.0.9 + * @version 0.1.0 */ exports.version = '0.1.0'; @@ -278,4 +278,4 @@ exports.Compiler = function( ){ //CALL TO CONSTRUCTOR// Constructor.call( this, arguments[0] ); //CALL TO CONSTRUCTOR// -}; \ No newline at end of file +}; diff --git a/lib/parser.js b/lib/parser.js index 5e9ff99..11561ec 100644 --- a/lib/parser.js +++ b/lib/parser.js @@ -1,6 +1,6 @@ /*! * Javascript BNF Parser - * @version 0.0.9 + * @version 0.1.0 */ /** @@ -847,4 +847,4 @@ exports.parser = function(){ //CALL TO CONSTRUCTOR// Constructor.call( this, arguments[0] ); //CALL TO CONSTRUCTOR// -}; \ No newline at end of file +};