diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 18eef3d5..e1a55a36 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.12.2" + ".": "0.12.3" } diff --git a/CHANGELOG.md b/CHANGELOG.md index fb4d4baa..0b98fbdb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,14 @@ GOWDK is experimental 0.x software. Public syntax, generated output, runtime packages, and tooling contracts may change before 1.0. +## [0.12.3](https://github.com/cssbruno/GoWDK/compare/v0.12.2...v0.12.3) (2026-07-07) + + +### Bug Fixes + +* clean up example fragment markup and smoke inventory ([#795](https://github.com/cssbruno/GoWDK/issues/795)) ([8f7e36a](https://github.com/cssbruno/GoWDK/commit/8f7e36a46dbd502485405d4544e64fd9ef1d566e)) +* **generated-output:** publish artifacts transactionally ([#796](https://github.com/cssbruno/GoWDK/issues/796)) ([5217095](https://github.com/cssbruno/GoWDK/commit/5217095e3cec59b5f42ffe63d011332111d11726)) + ## [0.12.2](https://github.com/cssbruno/GoWDK/compare/v0.12.1...v0.12.2) (2026-06-27) diff --git a/editors/vscode/package.json b/editors/vscode/package.json index 6feb4415..a879ccef 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.2", + "version": "0.12.3", "publisher": "gowdk", "license": "MIT", "icon": "icons/gowdk.png", diff --git a/internal/gowdkcmd/main.go b/internal/gowdkcmd/main.go index 64575fa3..1245e469 100644 --- a/internal/gowdkcmd/main.go +++ b/internal/gowdkcmd/main.go @@ -10,7 +10,7 @@ import ( "github.com/cssbruno/gowdk" ) -const version = "0.12.2" // x-release-please-version +const version = "0.12.3" // x-release-please-version var ( defaultSourceIncludes = []string{"**/*.gwdk"}