diff --git a/package-lock.json b/package-lock.json index 99eb3be..367aa8c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -18232,7 +18232,7 @@ }, "packages/lest": { "name": "@taservers/lest", - "version": "2.1.0", + "version": "3.0.0", "license": "MIT", "dependencies": { "lookpath": "^1.2.2", diff --git a/packages/lest/CHANGELOG.md b/packages/lest/CHANGELOG.md index feb3cc3..d6de439 100644 --- a/packages/lest/CHANGELOG.md +++ b/packages/lest/CHANGELOG.md @@ -14,6 +14,21 @@ The valid change types are: - `Fixed` for any bug fixes. - `Security` in case of vulnerabilities. +## [3.0.0] - [#102](https://github.com/TAServers/lest/issues/102) + +### Added + +- Made it possible to set `testMatch` from the CLI + +### Changed + +- (**BREAKING**) Changed CLI option format to only support `--option=value` and `-o=value` (`--option` and `-o` are shorthand for `--option=true` and `-o=true` respectively) + +### Fixed + +- `lest.config.lua` is no longer required to run tests [#97](https://github.com/TAServers/lest/issues/97) +- Unrecognised CLI arguments no longer throw an error, fixing the `--luaCommand` option in the wrapper being unusable [#104](https://github.com/TAServers/lest/issues/104) + ## [2.1.0] - [#95](https://github.com/TAServers/lest/issues/95) ### Changed diff --git a/packages/lest/package.json b/packages/lest/package.json index 205a2d0..884af2f 100644 --- a/packages/lest/package.json +++ b/packages/lest/package.json @@ -1,6 +1,6 @@ { "name": "@taservers/lest", - "version": "2.1.0", + "version": "3.0.0", "license": "MIT", "description": "Painless Lua testing.", "homepage": "https://taservers.github.io/lest/",