From 3e6b96ec4794b160d34963754f34a81b15993b29 Mon Sep 17 00:00:00 2001 From: Bruno Date: Sat, 27 Jun 2026 09:19:37 -0300 Subject: [PATCH] chore(main): release 0.12.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 11 +++++++++++ editors/vscode/package.json | 2 +- internal/gowdkcmd/main.go | 2 +- 4 files changed, 14 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 8032c17e..38acea67 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.12.0" + ".": "0.12.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 61228914..49a5a18f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,17 @@ GOWDK is experimental 0.x software. Public syntax, generated output, runtime packages, and tooling contracts may change before 1.0. +## [0.12.1](https://github.com/cssbruno/GoWDK/compare/v0.12.0...v0.12.1) (2026-06-27) + + +### Bug Fixes + +* **config:** harden CORS, addons, CSS, and artifact scans ([#756](https://github.com/cssbruno/GoWDK/issues/756)) ([0ffab59](https://github.com/cssbruno/GoWDK/commit/0ffab590a036706209e58e068f05cd7825bcf7a0)) +* **examples:** harden runnable example flows ([#770](https://github.com/cssbruno/GoWDK/issues/770)) ([d3b8c78](https://github.com/cssbruno/GoWDK/commit/d3b8c78d91a8335391773edc395be192a1cf3328)) +* **gowdkcmd:** preserve delegated helper source paths ([#750](https://github.com/cssbruno/GoWDK/issues/750)) ([935d9ae](https://github.com/cssbruno/GoWDK/commit/935d9ae305d8babad6ec8b01295122bcdd21b495)) +* **release:** require conventional PR titles ([#757](https://github.com/cssbruno/GoWDK/issues/757)) ([58e99ef](https://github.com/cssbruno/GoWDK/commit/58e99efc5bc933409b3fe9e99d3d78d652c11b7f)) +* support config helper source checkout builds ([#746](https://github.com/cssbruno/GoWDK/issues/746)) ([15a52b7](https://github.com/cssbruno/GoWDK/commit/15a52b7ae90903193a8fbbedb754425595af4b67)) + ## [0.12.0](https://github.com/cssbruno/GoWDK/compare/v0.11.0...v0.12.0) (2026-06-26) diff --git a/editors/vscode/package.json b/editors/vscode/package.json index 888f1d1f..9b39b672 100644 --- a/editors/vscode/package.json +++ b/editors/vscode/package.json @@ -2,7 +2,7 @@ "name": "gowdk-vscode", "displayName": "GOWDK", "description": "Language tools for portable .gwdk files.", - "version": "0.12.0", + "version": "0.12.1", "publisher": "gowdk", "license": "MIT", "icon": "icons/gowdk.png", diff --git a/internal/gowdkcmd/main.go b/internal/gowdkcmd/main.go index 069121a1..d87e52b1 100644 --- a/internal/gowdkcmd/main.go +++ b/internal/gowdkcmd/main.go @@ -10,7 +10,7 @@ import ( "github.com/cssbruno/gowdk" ) -const version = "0.12.0" // x-release-please-version +const version = "0.12.1" // x-release-please-version var ( defaultSourceIncludes = []string{"**/*.gwdk"}