happy-rusty 1.6.0 → 1.6.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 +20 -0
- package/LICENSE +21 -674
- package/README.cn.md +7 -10
- package/README.md +7 -10
- package/dist/main.cjs.map +1 -1
- package/dist/main.mjs.map +1 -1
- package/dist/types.d.ts +3 -3
- package/package.json +2 -3
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,24 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [1.6.2] - 2025-12-25
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
- `promiseToAsyncResult` now accepts `PromiseLike<T>` instead of `Promise<T>` for broader compatibility with thenable objects
|
|
12
|
+
- Use `AsyncResult` type alias in function signatures for consistency
|
|
13
|
+
|
|
14
|
+
### Removed
|
|
15
|
+
- Removed unused `source` field from package.json (Parcel legacy)
|
|
16
|
+
- Removed redundant `@internal` tags from private (non-exported) functions
|
|
17
|
+
|
|
18
|
+
## [1.6.1] - 2025-12-19
|
|
19
|
+
|
|
20
|
+
### Changed
|
|
21
|
+
- License changed from GPL-3.0 to MIT for broader adoption and easier integration
|
|
22
|
+
|
|
23
|
+
### Added
|
|
24
|
+
- Navigation links (GitHub, npm, JSR) in TypeDoc documentation header
|
|
25
|
+
|
|
8
26
|
## [1.6.0] - 2025-12-18
|
|
9
27
|
|
|
10
28
|
### Added
|
|
@@ -184,6 +202,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
184
202
|
- Full TypeScript support
|
|
185
203
|
- Comprehensive API matching Rust's Option and Result
|
|
186
204
|
|
|
205
|
+
[1.6.2]: https://github.com/JiangJie/happy-rusty/compare/v1.6.1...v1.6.2
|
|
206
|
+
[1.6.1]: https://github.com/JiangJie/happy-rusty/compare/v1.6.0...v1.6.1
|
|
187
207
|
[1.6.0]: https://github.com/JiangJie/happy-rusty/compare/v1.5.0...v1.6.0
|
|
188
208
|
[1.5.0]: https://github.com/JiangJie/happy-rusty/compare/v1.4.0...v1.5.0
|
|
189
209
|
[1.4.0]: https://github.com/JiangJie/happy-rusty/compare/v1.3.2...v1.4.0
|