Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/bright-config-path.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/calm-doctor.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/quiet-dry-run.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/swift-suites-hook.md

This file was deleted.

13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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 <path>` 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.
4 changes: 2 additions & 2 deletions cli/version.luau
Original file line number Diff line number Diff line change
@@ -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}`
Expand All @@ -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 {
Expand Down
4 changes: 2 additions & 2 deletions loom.config.luau
Original file line number Diff line number Diff line change
@@ -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',
},
Expand Down
10 changes: 5 additions & 5 deletions loom.lock.luau
Original file line number Diff line number Diff line change
@@ -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' },
}
2 changes: 1 addition & 1 deletion mise.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
Loading