actor-ts 0.9.0 → 0.9.1
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 +26 -0
- package/README.md +3 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -9,6 +9,32 @@ breaking. See `ROADMAP.md` for what's coming, and `README.md` →
|
|
|
9
9
|
|
|
10
10
|
## [Unreleased]
|
|
11
11
|
|
|
12
|
+
## [0.9.1] — 2026-05-15
|
|
13
|
+
|
|
14
|
+
Docs-only patch release covering the first round of post-v0.9.0
|
|
15
|
+
publish feedback.
|
|
16
|
+
|
|
17
|
+
### Fixed
|
|
18
|
+
|
|
19
|
+
- README logo no longer 404s on the npmjs.com package page —
|
|
20
|
+
switched from relative `./docs/public/logo.png` to an absolute
|
|
21
|
+
`raw.githubusercontent.com/pathosDev/actor-ts/main/...` URL.
|
|
22
|
+
Relative paths inside raw `<img>` tags aren't rewritten by
|
|
23
|
+
npm's README renderer, only Markdown image syntax is.
|
|
24
|
+
- README license badge link similarly switched to an absolute
|
|
25
|
+
`github.com/.../LICENSE` URL.
|
|
26
|
+
- README "## License" section text — said "MIT" left over from
|
|
27
|
+
the original metadata-only declaration; corrected to
|
|
28
|
+
"Apache 2.0" matching the v0.9.0 relicense.
|
|
29
|
+
- Sub-package READMEs (`benchmarks/`, `examples/chat/`,
|
|
30
|
+
`examples/voice/`) referenced a non-existent `assets/logo.svg`
|
|
31
|
+
path (the `assets/` folder never existed in this layout).
|
|
32
|
+
Switched to the same absolute
|
|
33
|
+
`raw.githubusercontent.com/pathosDev/actor-ts/main/docs/public/logo.svg`
|
|
34
|
+
URL the root README now uses — consistent across every README
|
|
35
|
+
and robust under any rendering target (GitHub, npm, mirrored
|
|
36
|
+
forks).
|
|
37
|
+
|
|
12
38
|
## [0.9.0] — 2026-05-14
|
|
13
39
|
|
|
14
40
|
The "public-launch readiness" release. Six workstreams accumulated
|
package/README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<p align="center">
|
|
2
|
-
<img src="
|
|
2
|
+
<img src="https://raw.githubusercontent.com/pathosDev/actor-ts/main/docs/public/logo.png" alt="actor-ts" width="560"/>
|
|
3
3
|
</p>
|
|
4
4
|
|
|
5
5
|
<p align="center">
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
</p>
|
|
18
18
|
|
|
19
19
|
<p align="center">
|
|
20
|
-
<a href="
|
|
20
|
+
<a href="https://github.com/pathosDev/actor-ts/blob/main/LICENSE"><img alt="license" src="https://img.shields.io/badge/license-Apache_2.0-8b5cf6?style=flat-square"/></a>
|
|
21
21
|
<a href="#"><img alt="status" src="https://img.shields.io/badge/status-experimental-f59e0b?style=flat-square"/></a>
|
|
22
22
|
</p>
|
|
23
23
|
|
|
@@ -266,4 +266,4 @@ Issues and feature requests live on
|
|
|
266
266
|
|
|
267
267
|
## License
|
|
268
268
|
|
|
269
|
-
[
|
|
269
|
+
[Apache 2.0](./LICENSE).
|