Skip to content

Commit c706cf7

Browse files
Merge pull request #983 from typed-ember/release-preview
Prepare Release
2 parents fc6572c + 7187d72 commit c706cf7

File tree

5 files changed

+38
-46
lines changed

5 files changed

+38
-46
lines changed

.release-plan.json

Lines changed: 13 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -1,81 +1,51 @@
11
{
22
"solution": {
33
"@glint/ember-tsc": {
4-
"impact": "minor",
5-
"oldVersion": "1.0.0-alpha.1",
6-
"newVersion": "1.0.0",
4+
"impact": "patch",
5+
"oldVersion": "1.0.0",
6+
"newVersion": "1.0.1",
77
"tagName": "latest",
88
"constraints": [
9-
{
10-
"impact": "minor",
11-
"reason": "Appears in changelog section :rocket: Enhancement"
12-
},
139
{
1410
"impact": "patch",
1511
"reason": "Has dependency `workspace:*` on @glint/template"
1612
},
1713
{
1814
"impact": "patch",
19-
"reason": "Appears in changelog section :house: Internal"
15+
"reason": "Appears in changelog section :memo: Documentation"
2016
}
2117
],
2218
"pkgJSONPath": "./packages/core/package.json"
2319
},
2420
"@glint/template": {
25-
"impact": "minor",
26-
"oldVersion": "1.6.0-alpha.4",
27-
"newVersion": "1.6.0",
21+
"impact": "patch",
22+
"oldVersion": "1.6.0",
23+
"newVersion": "1.6.1",
2824
"tagName": "latest",
2925
"constraints": [
30-
{
31-
"impact": "minor",
32-
"reason": "Appears in changelog section :rocket: Enhancement"
33-
},
3426
{
3527
"impact": "patch",
36-
"reason": "Appears in changelog section :house: Internal"
28+
"reason": "Appears in changelog section :bug: Bug Fix"
3729
}
3830
],
3931
"pkgJSONPath": "./packages/template/package.json"
4032
},
4133
"@glint/tsserver-plugin": {
42-
"impact": "minor",
43-
"oldVersion": "2.0.0-alpha.12",
44-
"newVersion": "2.0.0",
34+
"impact": "patch",
35+
"oldVersion": "2.0.0",
36+
"newVersion": "2.0.1",
4537
"tagName": "latest",
4638
"constraints": [
4739
{
4840
"impact": "patch",
4941
"reason": "Has dependency `workspace:*` on @glint/ember-tsc"
50-
},
51-
{
52-
"impact": "minor",
53-
"reason": "Appears in changelog section :rocket: Enhancement"
54-
},
55-
{
56-
"impact": "patch",
57-
"reason": "Appears in changelog section :house: Internal"
5842
}
5943
],
6044
"pkgJSONPath": "./packages/tsserver-plugin/package.json"
6145
},
6246
"@glint/type-test": {
63-
"impact": "minor",
64-
"oldVersion": "2.0.0-alpha.5",
65-
"newVersion": "2.0.0",
66-
"tagName": "latest",
67-
"constraints": [
68-
{
69-
"impact": "minor",
70-
"reason": "Appears in changelog section :rocket: Enhancement"
71-
},
72-
{
73-
"impact": "patch",
74-
"reason": "Appears in changelog section :house: Internal"
75-
}
76-
],
77-
"pkgJSONPath": "./packages/type-test/package.json"
47+
"oldVersion": "2.0.0"
7848
}
7949
},
80-
"description": "## Release (2025-09-30)\n\n* @glint/ember-tsc 1.0.0 (minor)\n* @glint/template 1.6.0 (minor)\n* @glint/tsserver-plugin 2.0.0 (minor)\n* @glint/type-test 2.0.0 (minor)\n\n#### :rocket: Enhancement\n* `@glint/ember-tsc`, `@glint/template`, `@glint/tsserver-plugin`, `@glint/type-test`\n * [#979](https://github.com/typed-ember/glint/pull/979) Split out ember-tsc and Glint 2 extension for hybrid upgrade strategy ([@machty](https://github.com/machty))\n\n#### :house: Internal\n* `@glint/ember-tsc`, `@glint/template`, `@glint/tsserver-plugin`, `@glint/type-test`\n * [#981](https://github.com/typed-ember/glint/pull/981) release-plan: prep for v2 ([@machty](https://github.com/machty))\n\n#### Committers: 1\n- Alex Matchneer ([@machty](https://github.com/machty))\n"
50+
"description": "## Release (2025-10-01)\n\n* @glint/ember-tsc 1.0.1 (patch)\n* @glint/template 1.6.1 (patch)\n* @glint/tsserver-plugin 2.0.1 (patch)\n\n#### :bug: Bug Fix\n* `@glint/template`\n * [#986](https://github.com/typed-ember/glint/pull/986) Add missing \"xmlns\" attribut to SVGSVGElementAttributes ([@bartocc](https://github.com/bartocc))\n\n#### :memo: Documentation\n* Other\n * [#987](https://github.com/typed-ember/glint/pull/987) Listed ember-codemod-add-template-tags as a migration option ([@ijlee2](https://github.com/ijlee2))\n * [#982](https://github.com/typed-ember/glint/pull/982) Publish v2 docs ([@machty](https://github.com/machty))\n* `@glint/ember-tsc`\n * [#985](https://github.com/typed-ember/glint/pull/985) Typo in README.md ([@bartocc](https://github.com/bartocc))\n\n#### Committers: 3\n- Alex Matchneer ([@machty](https://github.com/machty))\n- Isaac Lee ([@ijlee2](https://github.com/ijlee2))\n- Julien Palmas ([@bartocc](https://github.com/bartocc))\n"
8151
}

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
11
# Changelog
22

3+
## Release (2025-10-01)
4+
5+
* @glint/ember-tsc 1.0.1 (patch)
6+
* @glint/template 1.6.1 (patch)
7+
* @glint/tsserver-plugin 2.0.1 (patch)
8+
9+
#### :bug: Bug Fix
10+
* `@glint/template`
11+
* [#986](https://github.com/typed-ember/glint/pull/986) Add missing "xmlns" attribut to SVGSVGElementAttributes ([@bartocc](https://github.com/bartocc))
12+
13+
#### :memo: Documentation
14+
* Other
15+
* [#987](https://github.com/typed-ember/glint/pull/987) Listed ember-codemod-add-template-tags as a migration option ([@ijlee2](https://github.com/ijlee2))
16+
* [#982](https://github.com/typed-ember/glint/pull/982) Publish v2 docs ([@machty](https://github.com/machty))
17+
* `@glint/ember-tsc`
18+
* [#985](https://github.com/typed-ember/glint/pull/985) Typo in README.md ([@bartocc](https://github.com/bartocc))
19+
20+
#### Committers: 3
21+
- Alex Matchneer ([@machty](https://github.com/machty))
22+
- Isaac Lee ([@ijlee2](https://github.com/ijlee2))
23+
- Julien Palmas ([@bartocc](https://github.com/bartocc))
24+
325
## Release (2025-09-30)
426

527
* @glint/ember-tsc 1.0.0 (minor)

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@glint/ember-tsc",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"repository": "typed-ember/glint",
55
"description": "A CLI for performing typechecking on Glimmer templates",
66
"license": "MIT",

packages/template/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@glint/template",
3-
"version": "1.6.0",
3+
"version": "1.6.1",
44
"repository": "typed-ember/glint",
55
"description": "Type definitions to back typechecking for Glimmer templates",
66
"license": "MIT",

packages/tsserver-plugin/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@glint/tsserver-plugin",
3-
"version": "2.0.0",
3+
"version": "2.0.1",
44
"type": "commonjs",
55
"repository": "typed-ember/glint",
66
"description": "TypeScript Server Plugin for Glint",

0 commit comments

Comments
 (0)