diff --git a/CHANGELOG.md b/CHANGELOG.md index dd8f27b..b9f257e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +### [0.1.5](https://github.com/adaltas/node-mocha-they/compare/v0.1.4...v0.1.5) (2024-09-22) + ### [0.1.4](https://github.com/adaltas/node-mocha-they/compare/v0.1.3...v0.1.4) (2024-09-22) ### Features diff --git a/README.md b/README.md index c41516b..b318f5b 100644 --- a/README.md +++ b/README.md @@ -168,7 +168,7 @@ It returns a new function which behave exactly like the `it` function in mocha. ## Example using the before and after configuration hooks -A more complexe example covers the [usage of `before` and `after`](./samples/before-after-typescript.ts). The `ssh` object is converted to a fake SSH client and the connection is closed after the tests. +A more complexe example covers the [usage of `before` and `after`](./samples/before-after-typescript.ts). In this example, an `ssh` object is converted to a fake SSH client and the connection is closed after the tests. ```ts Test before/after usage diff --git a/package-lock.json b/package-lock.json index 2b51e54..550ecb0 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "mocha-they", - "version": "0.1.4", + "version": "0.1.5", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "mocha-they", - "version": "0.1.4", + "version": "0.1.5", "license": "MIT", "dependencies": { "mixme": "^1.1.0" diff --git a/package.json b/package.json index 1300b6a..ca37b4c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mocha-they", - "version": "0.1.4", + "version": "0.1.5", "description": "Extends Mocha with the function `they` to transparently run tests in local and ssh mode", "keywords": [ "ssh", @@ -75,7 +75,6 @@ "lint:check": "eslint", "lint:fix": "eslint --fix", "lint:staged": "npx lint-staged", - "publish": "git push --follow-tags origin master && npm publish", "prepare": "husky install", "release": "standard-version", "release:minor": "standard-version --release-as minor",