From 5ed4c01940e6bd578fb83253cfbeda0a6c05177c Mon Sep 17 00:00:00 2001 From: centauri <83140718+centau@users.noreply.github.com> Date: Sat, 11 Jul 2026 13:25:38 +0100 Subject: [PATCH] Bump version to `0.4.1` --- CHANGELOG.md | 6 +++++- src/lib.luau | 2 +- test/{create-types.luau => create-type-test.luau} | 0 3 files changed, 6 insertions(+), 2 deletions(-) rename test/{create-types.luau => create-type-test.luau} (100%) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4170b6a..3e584d2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). -------------------------------------------------------------------------------- -## Unreleased +## [0.4.1] - 2026-07-11 ### Changed @@ -16,6 +16,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). - `create()` overloads. Supported is now only `create(class)(props)`. +### Fixed + +- `create()` types in the new solver should now work without `::`. + -------------------------------------------------------------------------------- ## [0.4.0] - 2026-01-17 diff --git a/src/lib.luau b/src/lib.luau index 28784b4..671f1c6 100644 --- a/src/lib.luau +++ b/src/lib.luau @@ -1,4 +1,4 @@ -local version = { major = 0, minor = 4, patch = 0 } +local version = { major = 0, minor = 4, patch = 1 } local root = require "./root" local branch = require "./branch" diff --git a/test/create-types.luau b/test/create-type-test.luau similarity index 100% rename from test/create-types.luau rename to test/create-type-test.luau