Skip to content

Commit 13359d7

Browse files
author
Brian Mock
committed
1.7.1
1 parent 1821f52 commit 13359d7

File tree

3 files changed

+21
-9
lines changed

3 files changed

+21
-9
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## version 1.7.1 (2018-03-22)
2+
3+
* Fixes a bug where `bitSeq` consumed the wrong input
4+
15
## version 1.7.0 (2018-03-10)
26

37
* Adds support for binary parsing using Node.js Buffers

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+16-8
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,22 @@
11
{
22
"name": "parsimmon",
3-
"version": "1.7.0",
3+
"version": "1.7.1",
44
"description": "A monadic LL(infinity) parser combinator library",
5-
"keywords": ["parsing", "parse", "parsers", "parser combinators"],
5+
"keywords": [
6+
"parsing",
7+
"parse",
8+
"parsers",
9+
"parser combinators"
10+
],
611
"author": "Jeanine Adkisson <jneen at jneen dot net>",
7-
"contributors": ["Brian Mock <[email protected]>"],
12+
"contributors": [
13+
"Brian Mock <[email protected]>"
14+
],
815
"repository": "https://github.com/jneen/parsimmon",
9-
"files": ["src", "build"],
16+
"files": [
17+
"src",
18+
"build"
19+
],
1020
"main": "src/parsimmon.js",
1121
"browser": "build/parsimmon.umd.min.js",
1222
"devDependencies": {
@@ -24,10 +34,8 @@
2434
"prebuild": "rimraf build && mkdirp build",
2535
"build": "webpack -p",
2636
"prepublishOnly": "npm run test && npm run build",
27-
"lint":
28-
"prettier --list-different '{examples,src,test}/**/*.js' webpack.config.js && eslint examples src test webpack.config.js",
29-
"lint:fix":
30-
"prettier --write '{examples,src,test}/**/*.js' webpack.config.js && eslint --fix examples src test webpack.config.js",
37+
"lint": "prettier --list-different '{examples,src,test}/**/*.js' webpack.config.js && eslint examples src test webpack.config.js",
38+
"lint:fix": "prettier --write '{examples,src,test}/**/*.js' webpack.config.js && eslint --fix examples src test webpack.config.js",
3139
"precoverage": "npm run test",
3240
"coverage": "nyc report --reporter=text-lcov | coveralls",
3341
"pretest": "npm run lint",

0 commit comments

Comments
 (0)