From 9f350a4ac368e19ae619fa810496cb8fad65ce5a Mon Sep 17 00:00:00 2001 From: Michael Raith Date: Thu, 28 Jul 2016 06:50:30 +0000 Subject: [PATCH] release v1.3.0 --- CHANGELOG.md | 15 ++++++--------- package.json | 16 ++++++++-------- 2 files changed, 14 insertions(+), 17 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ec94757..88b1c86 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,9 @@ -# HEAD - -- Update unit tests: - - Add missing asserts. - - Add tests to register a function (in preparation of ES6 fat arrow functions). -- Add new script `lint` (run via `npm run lint`) to lint project files using eslint. - - Adjust usage of `'use strict'` in `source/utils.js`. - - Adjust eslint rule to warn if function is used before it was defined. - - Convert jshint-ignore statements to eslint. +# 1.3.0 + +- Update unit tests. +- Remove `JSCS`/`JSHint` and replaced it with `ESLint`. +- Add support to add dependencies using fat arrow functions e.g. `container.register('foo', () => {})`. + # 1.2.7 diff --git a/package.json b/package.json index 0a7952a..febf9d9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@bruce17/dependable", - "version": "1.2.7", + "version": "1.3.0", "main": "source/index.js", "engines": { "node": ">=0.10.0", @@ -46,15 +46,15 @@ "license": "MIT", "dependencies": {}, "devDependencies": { - "chai": "^3.5.0", + "chai": "^3.0.0", "codeclimate-test-reporter": "^0.3.3", - "coveralls": "^2.11.11", + "coveralls": "^2.11.2", "eslint": "^2.13.1", - "istanbul-harmony": "^0.3.16", - "jsdoc": "^3.4.0", - "mocha": "^3.0.0-2", - "should": "^10.0.0", - "sinon": "^1.17.5", + "istanbul-harmony": "^0.3.15", + "jsdoc": "^3.3.2", + "mocha": "^2.2.5", + "should": "^9.0.2", + "sinon": "^1.15.3", "sinon-chai": "^2.8.0" } }