emberwick 0.4.1 → 0.4.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +13 -0
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/package.json +10 -1
- package/umd/emberwick.umd.js +1 -1
- package/umd/emberwick.umd.js.map +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,19 @@
|
|
|
3
3
|
All notable changes to Emberwick are documented here.
|
|
4
4
|
This project follows [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
5
5
|
|
|
6
|
+
## [0.4.2] — 2026-09-19
|
|
7
|
+
|
|
8
|
+
Metadata only. The code is identical to 0.4.1; nothing needs re-testing.
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- `repository`, `homepage`, `bugs` and `author` in the published manifest, so
|
|
13
|
+
the npm package page links back to the source, the demo and the issue
|
|
14
|
+
tracker, and carries a publisher byline. These
|
|
15
|
+
belong in `package.lib.json` — the root `package.json` is private and never
|
|
16
|
+
reaches the registry — and 0.4.1 shipped without them. npm versions are
|
|
17
|
+
immutable, hence a new patch rather than a corrected republish.
|
|
18
|
+
|
|
6
19
|
## [0.4.1] — 2026-09-19
|
|
7
20
|
|
|
8
21
|
Bug-fix release. Three feed-lifecycle races could put wrong prices on screen,
|
package/index.js
CHANGED