diff --git a/Gruntfile.coffee b/Gruntfile.coffee index f54856a..b0d66f1 100644 --- a/Gruntfile.coffee +++ b/Gruntfile.coffee @@ -36,7 +36,7 @@ module.exports = (grunt) -> forceExit: true, captureExceptions: true, specFolders: ['tests'], - src: ['**/*.js'] + src: ['lib/*.js'] junitreport: report: false, savePath : "./build/reports/jasmine/", diff --git a/README.md b/README.md index 565389b..66a6efd 100644 --- a/README.md +++ b/README.md @@ -75,6 +75,9 @@ content = ini.read(file); ## Changelog +### 0.5.1 +* Fixed a bug where single lines of multilines got trimmed + ### 0.5.0 * Added support for filters per value diff --git a/package.json b/package.json index a3b692d..c67e88e 100755 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "multi-ini", - "version": "0.5.0", + "version": "0.5.1", "description": "An ini-file parser which supports multi line, multiple levels and arrays to get a maximum of compatibility with Zend config files.", "main": "lib/multi-ini-class.js", "scripts": { @@ -35,7 +35,6 @@ "grunt": "^0.4.5", "grunt-contrib-clean": "^0.5.0", "grunt-contrib-coffee": "^0.10.1", - "grunt-contrib-jasmine": "^0.6.1", "grunt-coveralls": "^1.0.0", "grunt-jasmine-node": "^0.1.0", "grunt-jasmine-node-coverage": "^0.4.1",