diff --git a/.npmignore b/.npmignore index 1c39117..588bc3f 100644 --- a/.npmignore +++ b/.npmignore @@ -6,6 +6,7 @@ npm-debug.log package-lock.json .test /test +/.github .istanbul.yml .gitignore .travis.yml diff --git a/CHANGELOG.md b/CHANGELOG.md index defa4f8..786bf3d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ### Fixed ### Removed +## [2.8.0] - 2018-08-11 +### Added +- Avoid publishing .github folder into npm distribution. + ## [2.7.0] - 2018-08-11 ### Changed - Upgrade sinon version to 6.1.5. diff --git a/README.md b/README.md index 524a3cf..242a1e2 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,7 @@ Add the next script to your `package.json` file: "test": "mocha-sinon-chai" }, "devDependencies" : { - "mocha-sinon-chai": "2.7.0" + "mocha-sinon-chai": "2.8.0" } } ``` diff --git a/package.json b/package.json index 6c5150f..f05e06a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mocha-sinon-chai", - "version": "2.7.0", + "version": "2.8.0", "description": "Wrapper for Mocha, Sinon and Chai. Wrapper cli for istanbul and mocha. Avoid globals in tests", "main": "index.js", "keywords": [ diff --git a/sonar-project.properties b/sonar-project.properties index 81bdb27..075ee57 100644 --- a/sonar-project.properties +++ b/sonar-project.properties @@ -1,6 +1,6 @@ sonar.organization=javierbrea sonar.projectKey=mocha-sinon-chai -sonar.projectVersion=2.7.0 +sonar.projectVersion=2.8.0 sonar.sources=. sonar.exclusions=node_modules/**