Skip to content

Commit

Permalink
Update version to 0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dmajda committed Aug 19, 2016
1 parent 86c040e commit 671166b
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
0.9.0
0.10.0
2 changes: 1 addition & 1 deletion benchmark/index.html
Expand Up @@ -33,7 +33,7 @@ <h1>PEG.js Benchmark Suite</h1>
</tr>
</table>

<script src="../browser/peg-0.9.0.js"></script>
<script src="../browser/peg-0.10.0.js"></script>
<script src="vendor/jquery/jquery.js"></script>
<script src="vendor/jquery.scrollto/jquery.scrollTo.js"></script>
<script src="benchmarks.js"></script>
Expand Down
2 changes: 1 addition & 1 deletion lib/compiler/passes/generate-js.js
Expand Up @@ -1226,7 +1226,7 @@ function generateJS(ast, options) {
function generateGeneratedByComment() {
return [
'/*',
' * Generated by PEG.js 0.9.0.',
' * Generated by PEG.js 0.10.0.',
' *',
' * http://pegjs.org/',
' */'
Expand Down
2 changes: 1 addition & 1 deletion lib/parser.js
Expand Up @@ -2,7 +2,7 @@
/* eslint no-unused-vars: 0 */

/*
* Generated by PEG.js 0.9.0.
* Generated by PEG.js 0.10.0.
*
* http://pegjs.org/
*/
Expand Down
2 changes: 1 addition & 1 deletion lib/peg.js
Expand Up @@ -5,7 +5,7 @@ var arrays = require("./utils/arrays"),

var peg = {
/* PEG.js version (uses semantic versioning). */
VERSION: "0.9.0",
VERSION: "0.10.0",

GrammarError: require("./grammar-error"),
parser: require("./parser"),
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "pegjs",
"version": "0.9.0",
"version": "0.10.0",
"description": "Parser generator for JavaScript",
"keywords": [
"parser generator",
Expand Down
2 changes: 1 addition & 1 deletion spec/index.html
Expand Up @@ -5,7 +5,7 @@
<link rel="stylesheet" href="vendor/jasmine/jasmine.css">
<script src="vendor/jasmine/jasmine.js"></script>
<script src="vendor/jasmine/jasmine-html.js"></script>
<script src="../browser/peg-0.9.0.js"></script>
<script src="../browser/peg-0.10.0.js"></script>
<script src="helpers.js"></script>
<script src="unit/parser.spec.js"></script>
<script src="unit/compiler/passes/helpers.js"></script>
Expand Down

0 comments on commit 671166b

Please sign in to comment.