diff --git a/.changeset/bright-config-path.md b/.changeset/bright-config-path.md deleted file mode 100644 index 6aa400c..0000000 --- a/.changeset/bright-config-path.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"lutest": minor ---- - -Add a `--config ` option to the test and todo commands. diff --git a/.changeset/calm-doctor.md b/.changeset/calm-doctor.md deleted file mode 100644 index 4648daa..0000000 --- a/.changeset/calm-doctor.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"lutest": minor ---- - -Add a doctor command for local Lutest runtime diagnostics. diff --git a/.changeset/quiet-dry-run.md b/.changeset/quiet-dry-run.md deleted file mode 100644 index 252685b..0000000 --- a/.changeset/quiet-dry-run.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"lutest": minor ---- - -Add a dry-run option for test and todo discovery. diff --git a/.changeset/swift-suites-hook.md b/.changeset/swift-suites-hook.md deleted file mode 100644 index 91fe739..0000000 --- a/.changeset/swift-suites-hook.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"lutest": minor ---- - -Add explicit test suites and lifecycle hooks for Lute and Roblox runtimes. diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..9d292da --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,13 @@ +# lutest + +## 0.5.0 + +### Minor Changes + +- [#17](https://github.com/lutest-dev/lutest/pull/17) [`f97cbd2`](https://github.com/lutest-dev/lutest/commit/f97cbd241e6a1f2677367531f40f8fc9bb595fe8) Thanks [@cayasde](https://github.com/cayasde)! - Add a `--config ` option to the test and todo commands. + +- [#19](https://github.com/lutest-dev/lutest/pull/19) [`a9a6037`](https://github.com/lutest-dev/lutest/commit/a9a60371a120767a59e0014fb08bc78ab2a86fe8) Thanks [@cayasde](https://github.com/cayasde)! - Add a doctor command for local Lutest runtime diagnostics. + +- [#18](https://github.com/lutest-dev/lutest/pull/18) [`5f7e89f`](https://github.com/lutest-dev/lutest/commit/5f7e89f5e85c22ed5043919290570a960fc14826) Thanks [@cayasde](https://github.com/cayasde)! - Add a dry-run option for test and todo discovery. + +- [#13](https://github.com/lutest-dev/lutest/pull/13) [`e1b4e1b`](https://github.com/lutest-dev/lutest/commit/e1b4e1baa0ad5eb0d0634ab37ece783a5e74bca8) Thanks [@cayasde](https://github.com/cayasde)! - Add explicit test suites and lifecycle hooks for Lute and Roblox runtimes. diff --git a/cli/version.luau b/cli/version.luau index 09e544e..89e9031 100644 --- a/cli/version.luau +++ b/cli/version.luau @@ -1,6 +1,6 @@ const t = require '@lutest_release' -const VERSION = '0.4.0' +const VERSION = '0.5.0' const function format_version(): string return `lutest {VERSION}` @@ -11,7 +11,7 @@ const function print_version() end t.test('should format version output', function() - assert(format_version() == 'lutest 0.4.0') + assert(format_version() == 'lutest 0.5.0') end) return { diff --git a/loom.config.luau b/loom.config.luau index ce62849..30620e4 100644 --- a/loom.config.luau +++ b/loom.config.luau @@ -1,11 +1,11 @@ return { package = { name = 'lutest-selfhost', - version = '0.4.0', + version = '0.5.0', dependencies = { lutest = { name = 'lutest', - rev = 'v0.4.0', + rev = 'v0.5.0', sourceKind = 'github', source = 'https://github.com/lutest-dev/lutest', }, diff --git a/loom.lock.luau b/loom.lock.luau index 04db44f..7a4e860 100644 --- a/loom.lock.luau +++ b/loom.lock.luau @@ -1,16 +1,16 @@ return { version = 2, dependencies = { - ['lutest@v0.4.0'] = { - installPath = 'Packages/lutest@v0.4.0', + ['lutest@v0.5.0'] = { + installPath = 'Packages/lutest@v0.5.0', name = 'lutest', - rev = 'v0.4.0', + rev = 'v0.5.0', source = 'https://github.com/lutest-dev/lutest', sourceKind = 'github', dependencies = { - lutest = 'lutest@v0.4.0', + lutest = 'lutest@v0.5.0', }, }, }, - packages = { 'lutest@v0.4.0' }, + packages = { 'lutest@v0.5.0' }, } diff --git a/mise.toml b/mise.toml index fd16fc1..7d86daa 100644 --- a/mise.toml +++ b/mise.toml @@ -6,7 +6,7 @@ "github:pesde-pkg/pesde" = "0.7.3+registry.0.2.3" "github:JohnnyMorganz/StyLua" = "2.5.2" "cargo:darklua" = "0.19.0" -"github:lutest-dev/lutest" = "0.4.0" +"github:lutest-dev/lutest" = "0.5.0" node = "24.15.0" "npm:pnpm" = "11.0.9" diff --git a/package.json b/package.json index 3224856..c403c35 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "lutest", - "version": "0.4.0", + "version": "0.5.0", "description": "Lutest is a test runner for Luau code, with a focus on `lute` and Roblox runtimes.", "packageManager": "pnpm@11.0.9", "scripts": {