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 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
@@ -2100,7 +2100,7 @@ class RandomFeed extends DataFeed {
2100
2100
  function createChart(container, options) {
2101
2101
  return new Chart(container, options);
2102
2102
  }
2103
- const version = "0.4.1";
2103
+ const version = "0.4.2";
2104
2104
  export {
2105
2105
  Chart,
2106
2106
  DataFeed,