Browse Source

Merge branch 'release/0.7.0'

hotfix/0.7.1 0.7.0
Bryan Donovan 11 years ago
parent
commit
11300f3bc3
  1. 1
      .travis.yml
  2. 3
      History.md
  3. 18
      package.json

1
.travis.yml

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

3
History.md

@ -1,3 +1,6 @@
- 0.7.0 2014-06-15
Bumping package versions, mostly devDependencies
- 0.6.0 2014-06-15
Adding caching.keys() function (issue #6)
Updating examples/redis_example/example.js with cache.keys() usage

18
package.json

@ -1,6 +1,6 @@
{
"name": "cache-manager",
"version": "0.6.0",
"version": "0.7.0",
"description": "Cache module for Node.js",
"main": "index.js",
"scripts": {
@ -20,15 +20,15 @@
"author": "Bryan Donovan",
"license": "MIT",
"dependencies": {
"async": ">=0.1.22",
"lru-cache": ">=2.3.0"
"async": "^0.9.0",
"lru-cache": "^2.5.0"
},
"devDependencies": {
"coveralls": "~2.3.0",
"istanbul": ">=0.1.29",
"jshint": ">=1.0.1",
"mocha": ">=1.8.1",
"optimist": ">=0.3.5",
"sinon": ">=1.5.2"
"coveralls": "^2.3.0",
"istanbul": "^0.2.11",
"jshint": "^2.5.1",
"mocha": "^1.20.1",
"optimist": "^0.6.1",
"sinon": "^1.10.2"
}
}

Loading…
Cancel
Save