Skip to content

Commit d28e490

Browse files
committed
Release 8.2.0
1 parent 7effdc8 commit d28e490

File tree

6 files changed

+37
-11
lines changed

6 files changed

+37
-11
lines changed

addon/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,22 @@ All notable changes to this project will be documented in this file. See [standa
44

55

66

7+
8+
## v8.2.0 (2024-01-08)
9+
10+
#### :rocket: Enhancement
11+
* [#275](https://github.com/ember-cli/ember-page-title/pull/275) TypeScript conversion so we have accurately generated types for consumers ([@NullVoxPopuli](https://github.com/NullVoxPopuli))
12+
13+
#### :house: Internal
14+
* [#278](https://github.com/ember-cli/ember-page-title/pull/278) Pull forward the lint changes from #275 ([@NullVoxPopuli](https://github.com/NullVoxPopuli))
15+
* [#276](https://github.com/ember-cli/ember-page-title/pull/276) Prevent CI from running twice on PRs ([@NullVoxPopuli](https://github.com/NullVoxPopuli))
16+
* [#274](https://github.com/ember-cli/ember-page-title/pull/274) Package json sorting lint ([@NullVoxPopuli](https://github.com/NullVoxPopuli))
17+
* [#270](https://github.com/ember-cli/ember-page-title/pull/270) Fix publish.yml ([@NullVoxPopuli](https://github.com/NullVoxPopuli))
18+
* [#271](https://github.com/ember-cli/ember-page-title/pull/271) Update the lockfile ([@NullVoxPopuli](https://github.com/NullVoxPopuli))
19+
20+
#### Committers: 1
21+
- [@NullVoxPopuli](https://github.com/NullVoxPopuli)
22+
723
## v8.1.0 (2023-10-31)
824

925
#### :rocket: Enhancement

addon/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ember-page-title",
3-
"version": "8.1.0",
3+
"version": "8.2.0",
44
"description": "Page Titles for Ember applications",
55
"keywords": [
66
"ember-addon",

docs/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "docs",
3-
"version": "8.1.0",
3+
"version": "8.2.0",
44
"description": "Page Titles for Ember applications",
55
"keywords": [
66
"page title",
@@ -29,7 +29,7 @@
2929
"test:ember": "pnpm sync:pnpm && ember test"
3030
},
3131
"dependencies": {
32-
"ember-page-title": "workspace:*"
32+
"ember-page-title": "8.2.0"
3333
},
3434
"dependenciesMeta": {
3535
"ember-page-title": {

package.json

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,14 +42,23 @@
4242
"tokenRef": "GITHUB_AUTH"
4343
}
4444
},
45-
"version": "8.1.0",
45+
"version": "8.2.0",
4646
"pnpm": {
4747
"patchedDependencies": {
4848
4949
},
50-
"peerDependencyRules": {
51-
"ignoreMissing": ["rsvp", "webpack", "@babel/core", "ember-template-imports", "@glimmer/component"],
52-
"allowAny": ["typescript", "ember-source"]
50+
"peerDependencyRules": {
51+
"ignoreMissing": [
52+
"rsvp",
53+
"webpack",
54+
"@babel/core",
55+
"ember-template-imports",
56+
"@glimmer/component"
57+
],
58+
"allowAny": [
59+
"typescript",
60+
"ember-source"
61+
]
5362
},
5463
"overrides": {
5564
"@glimmer/manager": ">= 0.84.3",

test-app/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "test-app",
3-
"version": "8.1.0",
3+
"version": "8.2.0",
44
"description": "Page Titles for Ember applications",
55
"keywords": [
66
"page title",
@@ -33,7 +33,7 @@
3333
"test:ember-compatibility": "ember try:each"
3434
},
3535
"dependencies": {
36-
"ember-page-title": "workspace:*"
36+
"ember-page-title": "8.2.0"
3737
},
3838
"dependenciesMeta": {
3939
"ember-page-title": {

test-types/package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,10 @@
99
"@glint/template": "^1.2.1",
1010
"@tsconfig/node20": "^20.1.2",
1111
"@tsconfig/strictest": "^2.0.2",
12-
"ember-page-title": "workspace:^",
12+
"ember-page-title": "8.2.0",
1313
"ember-source": "^5.5.0",
1414
"expect-type": "^0.17.3",
1515
"typescript": "^5.3.3"
16-
}
16+
},
17+
"version": "8.2.0"
1718
}

0 commit comments

Comments
 (0)