Browse Source

2.0.0 - removing domain integration (#38)

develop 2.0.0
Bryan Donovan 9 years ago
parent
commit
c8896ef42c
  1. 1
      .travis.yml
  2. 5
      History.md
  3. 4
      package.json

1
.travis.yml

@ -1,6 +1,5 @@
language: node_js
node_js:
- '0.10'
- '0.12'
- '5.5'
script: 'make test-travis'

5
History.md

@ -1,5 +1,8 @@
- 2.0.0 2015-03-13
- Removing domain integration (#38), no longer actively supporting node 0.10.x.
- 1.5.0 2015-03-13
-npm bumps, making sure global.Promise is not defined in node 0.10 memory store test.
- npm bumps, making sure global.Promise is not defined in node 0.10 memory store test.
- 1.4.1 2016-03-13
- Fixing backward-compatibility Promise issue with node 0.10.x in memory store.

4
package.json

@ -1,6 +1,6 @@
{
"name": "cache-manager",
"version": "1.5.0",
"version": "2.0.0",
"description": "Cache module for Node.js",
"main": "index.js",
"scripts": {
@ -20,7 +20,7 @@
"author": "Bryan Donovan",
"license": "MIT",
"dependencies": {
"async": "^1.5.2",
"async": "1.5.2",
"lru-cache": "4.0.0"
},
"devDependencies": {

Loading…
Cancel
Save