diff --git a/.release-plan.json b/.release-plan.json index 153acb7..7cc47ce 100644 --- a/.release-plan.json +++ b/.release-plan.json @@ -1,17 +1,25 @@ { "solution": { "content-tag": { - "impact": "major", - "oldVersion": "3.1.3", - "newVersion": "4.0.0", + "impact": "minor", + "oldVersion": "4.0.0", + "newVersion": "4.1.0", "constraints": [ { - "impact": "major", - "reason": "Appears in changelog section :boom: Breaking Change" + "impact": "minor", + "reason": "Appears in changelog section :rocket: Enhancement" + }, + { + "impact": "patch", + "reason": "Appears in changelog section :memo: Documentation" + }, + { + "impact": "patch", + "reason": "Appears in changelog section :house: Internal" } ], "pkgJSONPath": "./package.json" } }, - "description": "## Release (2025-05-07)\n\ncontent-tag 4.0.0 (major)\n\n#### :boom: Breaking Change\n* `content-tag`\n * [#101](https://github.com/embroider-build/content-tag/pull/101) parse API: make bytes vs characters explicit ([@ef4](https://github.com/ef4))\n\n#### Committers: 1\n- Edward Faulkner ([@ef4](https://github.com/ef4))\n" + "description": "## Release (2025-11-25)\n\ncontent-tag 4.1.0 (minor)\n\n#### :rocket: Enhancement\n* `content-tag`\n * [#112](https://github.com/embroider-build/content-tag/pull/112) indentation stripping ([@NullVoxPopuli](https://github.com/NullVoxPopuli))\n * [#108](https://github.com/embroider-build/content-tag/pull/108) add utf16 code points range ([@patricklx](https://github.com/patricklx))\n\n#### :memo: Documentation\n* `content-tag`\n * [#111](https://github.com/embroider-build/content-tag/pull/111) Fix return type in readme to include code and map (as the dts already… ([@NullVoxPopuli](https://github.com/NullVoxPopuli))\n\n#### :house: Internal\n* `content-tag`\n * [#107](https://github.com/embroider-build/content-tag/pull/107) Configure prettier ([@NullVoxPopuli](https://github.com/NullVoxPopuli))\n * [#104](https://github.com/embroider-build/content-tag/pull/104) Add additional js/runtime tests for how to use character offsets ([@NullVoxPopuli](https://github.com/NullVoxPopuli))\n\n#### Committers: 2\n- Patrick Pircher ([@patricklx](https://github.com/patricklx))\n- [@NullVoxPopuli](https://github.com/NullVoxPopuli)\n" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 8df299f..3024823 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,25 @@ # `content-tag` Changelog +## Release (2025-11-25) + +content-tag 4.1.0 (minor) + +#### :rocket: Enhancement +* `content-tag` + * [#112](https://github.com/embroider-build/content-tag/pull/112) indentation stripping ([@NullVoxPopuli](https://github.com/NullVoxPopuli)) + * [#108](https://github.com/embroider-build/content-tag/pull/108) add utf16 code points range ([@patricklx](https://github.com/patricklx)) + +#### :memo: Documentation +* `content-tag` + * [#111](https://github.com/embroider-build/content-tag/pull/111) Fix return type in readme to include code and map (as the dts already… ([@NullVoxPopuli](https://github.com/NullVoxPopuli)) + +#### :house: Internal +* `content-tag` + * [#107](https://github.com/embroider-build/content-tag/pull/107) Configure prettier ([@NullVoxPopuli](https://github.com/NullVoxPopuli)) + * [#104](https://github.com/embroider-build/content-tag/pull/104) Add additional js/runtime tests for how to use character offsets ([@NullVoxPopuli](https://github.com/NullVoxPopuli)) + +#### Committers: 2 +- Patrick Pircher ([@patricklx](https://github.com/patricklx)) +- [@NullVoxPopuli](https://github.com/NullVoxPopuli) ## Release (2025-05-07) content-tag 4.0.0 (major) diff --git a/package.json b/package.json index f75db17..a1c50de 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "content-tag", - "version": "4.0.0", + "version": "4.1.0", "description": "A rust program that uses a fork of swc to parse and transform Javascript containing the content-tag proposal", "repository": { "type": "git",