You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+36Lines changed: 36 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,42 @@ 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.0.0/),
6
6
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
8
+
## 0.7.1 (2025-01-24)
9
+
10
+
### New Features
11
+
12
+
- <csr-id-e5a5e8685dd7aa46b2cd9737a404ba5420da1643/> update module loader and normalize functions to return Result type for better error handling
13
+
14
+
### Bug Fixes
15
+
16
+
- <csr-id-4fd8ee417022f09223e082294a44e30cacc20fcc/> improve error message formatting in ExecutionError
17
+
- <csr-id-93217de16770aa927ca24f11fb4653752da878a5/> improve error handling in module loader and normalizer
18
+
- <csr-id-6afb0cc790f133c6fd143569d9a1be3712bb3f63/> makes BigInt conversion conform to the specification
19
+
20
+
### Commit Statistics
21
+
22
+
<csr-read-only-do-not-edit/>
23
+
24
+
- 6 commits contributed to the release.
25
+
- 14 days passed between releases.
26
+
- 4 commits were understood as [conventional](https://www.conventionalcommits.org).
27
+
- 0 issues like '(#ID)' were seen in commit messages
28
+
29
+
### Commit Details
30
+
31
+
<csr-read-only-do-not-edit/>
32
+
33
+
<details><summary>view details</summary>
34
+
35
+
***Uncategorized**
36
+
- Merge pull request #6 from Icemic/bigint_fix ([`09492cb`](https://github.com/Icemic/quickjs-rusty/commit/09492cb5eeeec05a540c89aef6324a25f70c473a))
37
+
- Merge pull request #5 from Icemic/module_loader_result ([`18baaf8`](https://github.com/Icemic/quickjs-rusty/commit/18baaf83d50425a57263f10988a7a313974f252d))
38
+
- Improve error message formatting in ExecutionError ([`4fd8ee4`](https://github.com/Icemic/quickjs-rusty/commit/4fd8ee417022f09223e082294a44e30cacc20fcc))
39
+
- Improve error handling in module loader and normalizer ([`93217de`](https://github.com/Icemic/quickjs-rusty/commit/93217de16770aa927ca24f11fb4653752da878a5))
40
+
- Makes BigInt conversion conform to the specification ([`6afb0cc`](https://github.com/Icemic/quickjs-rusty/commit/6afb0cc790f133c6fd143569d9a1be3712bb3f63))
41
+
- Update module loader and normalize functions to return Result type for better error handling ([`e5a5e86`](https://github.com/Icemic/quickjs-rusty/commit/e5a5e8685dd7aa46b2cd9737a404ba5420da1643))
Copy file name to clipboardExpand all lines: libquickjs-sys/CHANGELOG.md
+33-1Lines changed: 33 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,37 @@ 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.0.0/),
6
6
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
8
+
## 0.7.2 (2025-01-24)
9
+
10
+
### Bug Fixes
11
+
12
+
- <csr-id-6afb0cc790f133c6fd143569d9a1be3712bb3f63/> makes BigInt conversion conform to the specification
13
+
14
+
### Refactor
15
+
16
+
- <csr-id-13c4d141f6c2ae0f067ff789cded4c038f8e1acc/> Remove patch operation; Remove unnecessary source code copy to simplify build process
17
+
18
+
### Commit Statistics
19
+
20
+
<csr-read-only-do-not-edit/>
21
+
22
+
- 3 commits contributed to the release.
23
+
- 13 days passed between releases.
24
+
- 2 commits were understood as [conventional](https://www.conventionalcommits.org).
25
+
- 0 issues like '(#ID)' were seen in commit messages
26
+
27
+
### Commit Details
28
+
29
+
<csr-read-only-do-not-edit/>
30
+
31
+
<details><summary>view details</summary>
32
+
33
+
***Uncategorized**
34
+
- Merge pull request #6 from Icemic/bigint_fix ([`09492cb`](https://github.com/Icemic/quickjs-rusty/commit/09492cb5eeeec05a540c89aef6324a25f70c473a))
35
+
- Remove patch operation; Remove unnecessary source code copy to simplify build process ([`13c4d14`](https://github.com/Icemic/quickjs-rusty/commit/13c4d141f6c2ae0f067ff789cded4c038f8e1acc))
36
+
- Makes BigInt conversion conform to the specification ([`6afb0cc`](https://github.com/Icemic/quickjs-rusty/commit/6afb0cc790f133c6fd143569d9a1be3712bb3f63))
37
+
</details>
38
+
8
39
## 0.7.1 (2025-01-10)
9
40
10
41
### Bug Fixes
@@ -15,7 +46,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
15
46
16
47
<csr-read-only-do-not-edit/>
17
48
18
-
-1 commit contributed to the release.
49
+
-2 commits contributed to the release.
19
50
- 1 commit was understood as [conventional](https://www.conventionalcommits.org).
20
51
- 0 issues like '(#ID)' were seen in commit messages
21
52
@@ -26,6 +57,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Improve cross-compilation support for Android in build script ([`8d5c593`](https://github.com/Icemic/quickjs-rusty/commit/8d5c593e0d09193fd1a5e6e8668f11c9dedbd45a))
0 commit comments