From 43b3577e1e4020b844a937f438f4ecbe0af5bcb0 Mon Sep 17 00:00:00 2001 From: Bryan Donovan Date: Sun, 15 Jun 2014 10:51:47 -0700 Subject: [PATCH 1/2] bumping package versions --- package.json | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package.json b/package.json index b257e5a..a95e342 100644 --- a/package.json +++ b/package.json @@ -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" } } From a2fea80818c710131765f61cb982ecbfc94169d3 Mon Sep 17 00:00:00 2001 From: Bryan Donovan Date: Sun, 15 Jun 2014 10:55:49 -0700 Subject: [PATCH 2/2] release notes, removing node 0.8 from travis.yml --- .travis.yml | 1 - History.md | 3 +++ package.json | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index af0b87a..40bd6a6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,5 @@ language: node_js node_js: - - 0.8 - '0.10' script: 'make test-travis' branches: diff --git a/History.md b/History.md index 361d1f4..be5846c 100644 --- a/History.md +++ b/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 diff --git a/package.json b/package.json index a95e342..5e9eb66 100644 --- a/package.json +++ b/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": {