diff --git a/.changeset/20260720-remove-typescript-support.md b/.changeset/20260720-remove-typescript-support.md deleted file mode 100644 index 43a24b7..0000000 --- a/.changeset/20260720-remove-typescript-support.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -type: patch ---- - -Remove TypeScript support from golit bundle. golit is a post-build tool that accepts compiled JavaScript from node_modules/, not TypeScript source. The directory walker no longer collects .ts/.tsx files, and the inline BundleSource loader uses LoaderJS instead of LoaderTS. diff --git a/CHANGELOG.md b/CHANGELOG.md index a11173b..ebbc36f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## v0.1.1 (2026-07-20) + +- Remove TypeScript support from golit bundle. golit is a post-build tool that accepts compiled JavaScript from node_modules/, not TypeScript source. The directory walker no longer collects .ts/.tsx files, and the inline BundleSource loader uses LoaderJS instead of LoaderTS. + ## v0.1.0 (2026-07-20) - Initial minor release consolidating all features since first commit. diff --git a/cmd/golit/version.go b/cmd/golit/version.go index 5b1386b..2d7267c 100644 --- a/cmd/golit/version.go +++ b/cmd/golit/version.go @@ -2,4 +2,4 @@ package main // Version is the current release version of golit. // Updated automatically by the changeset tool during releases. -var Version = "0.1.0" +var Version = "0.1.1"