Skip to content

Commit 1974647

Browse files
authored
release nearley version as 2.0.0 (#41)
* release nearley version as 2.0.0 * package.json: declare node 12+ required
1 parent 21db63e commit 1974647

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

Changes.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,15 @@
11

2+
### 2.0.0 - 2021-01-05
3+
4+
- major version bump, nearley output requires node.js > 11
5+
- package.json: declare dependency on node >= 12
6+
7+
8+
### 1.2.3 - 2021-01-05
9+
10+
- revert nearley version in 1.x line, incompatible with node < 11
11+
12+
213
### 1.2.2 - 2021-01-05
314

415
- package.json: remove spurious < character #37

package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "address-rfc2821",
3-
"version": "1.2.2",
3+
"version": "2.0.0",
44
"description": "RFC-5321 (Envelope) email address parser",
55
"author": {
66
"name": "The Haraka Team",
@@ -22,6 +22,9 @@
2222
"bugs": {
2323
"url": "https://github.com/haraka/node-address-rfc2821/issues"
2424
},
25+
"engines": {
26+
"node": ">= v12.20.1"
27+
},
2528
"scripts": {
2629
"grammar": "npx -p nearley nearleyc grammar.ne -o grammar.js",
2730
"cover": "NODE_ENV=cov npx nyc --reporter=lcovonly npm run test",

0 commit comments

Comments
 (0)