Skip to content

Commit ab0c28f

Browse files
committedNov 5, 2017
Add support for Node 9. Update CHANGELOG
1 parent d549af9 commit ab0c28f

File tree

4 files changed

+11
-2
lines changed

4 files changed

+11
-2
lines changed
 

‎.travis.yml

+2
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,5 @@ node_js:
33
- "6"
44
- "7"
55
- "8"
6+
- "9"
7+

‎CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Change Log
22

3+
# 1.1.0
4+
5+
- Only require parts of lodash that are used. (Thanks @bnolens)
6+
- Change Travis tested Node versions to 6, 7, 8, 9 (i.e. add support for Node 9)
7+
- Update all dependencies to latest versions
8+
- package-lock.json file removed
9+
310
# 1.0.0
411

512
* Node versions supported changes from 0.10 & 0.12 to 6.0.0, 7.0.0, 7.9.0

‎CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ NODE_MULTICACHE_TESTTYPE="integration" npm test
1414

1515
## Adding a new method to all Adapters
1616

17-
[This commit]() is a good example of how the flushAll() method was added to the project.
17+
[This commit](https://github.com/guyellis/multi-level-cache/commit/3ab765ba68e554ae2d79eb97900263acef525eae) is a good example of how the flushAll() method was added to the project.
1818
Use this as a template if you plan on adding a new method. Remember it has to be implemented
1919
for each adapter.

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,5 +61,5 @@
6161
"pre-commit-update": "npm update",
6262
"test": "node_modules/.bin/mocha --recursive"
6363
},
64-
"version": "1.0.0"
64+
"version": "1.1.0"
6565
}

0 commit comments

Comments
 (0)
Please sign in to comment.