Skip to content

Commit 6e552e3

Browse files
committed
Require minimum node of 8.0.0; Bump major version
1 parent 861a364 commit 6e552e3

2 files changed

Lines changed: 10 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,15 @@
22

33
Any changes, including backwards incompatible changes will be listed here
44

5-
## 1.1.0 (12/02/2019)
5+
## 2.0.0 (12/02/2019)
66

7+
- *Breaking Change*: Require minimum node.js of 8.0.0
78
- Ported to typescript (now exports typings)
8-
- New methods (cleaner instance methods, more static methods)
9+
- Provides a cleaner, more modern API to extract and parse while supporting old methods
10+
- Add static methods to extract single datapoints
11+
- Add a ValidPostcode class with accessor methods which can be destructured
912
- Updated documentation
10-
- Added benchmarks
13+
- Added benchmarking
1114

1215
## 1.0.1 (12/02/2019)
1316

package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
{
22
"name": "postcode",
3-
"version": "1.0.1",
3+
"version": "2.0.0",
44
"description": "UK Postcode helper methods",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",
7+
"engines": {
8+
"node": ">= 8.0.0"
9+
},
710
"dependencies": {},
811
"prettier": {},
912
"devDependencies": {

0 commit comments

Comments
 (0)