Skip to content

Commit cb9ef72

Browse files
committed
Release libquickjs-ng-sys v0.7.2, quickjs-rusty v0.7.1
1 parent 09492cb commit cb9ef72

File tree

5 files changed

+74
-6
lines changed

5 files changed

+74
-6
lines changed

CHANGELOG.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,42 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

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))
42+
</details>
43+
844
## 0.7.0 (2025-01-10)
945

1046
<csr-id-3f65492ed4852921c880770871f5d84d16766418/>

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ license = "MIT"
88
name = "quickjs-rusty"
99
readme = "README.md"
1010
repository = "https://github.com/Icemic/quickjs-rusty"
11-
version = "0.7.0"
11+
version = "0.7.1"
1212

1313
[package.metadata.docs.rs]
1414
features = ["chrono", "bigint"]
@@ -21,7 +21,7 @@ serde = ["thiserror", "dep:serde"]
2121
[dependencies]
2222
anyhow = {version = "1"}
2323
chrono = {version = "0.4.7", optional = true}
24-
libquickjs-ng-sys = {version = "^0.7.1", path = "./libquickjs-sys"}
24+
libquickjs-ng-sys = {version = "^0.7.2", path = "./libquickjs-sys"}
2525
log = "0.4"
2626
num-bigint = {version = "0.4.4", optional = true}
2727
num-traits = {version = "0.2.0", optional = true}

libquickjs-sys/CHANGELOG.md

Lines changed: 33 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,37 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

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+
839
## 0.7.1 (2025-01-10)
940

1041
### Bug Fixes
@@ -15,7 +46,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1546

1647
<csr-read-only-do-not-edit/>
1748

18-
- 1 commit contributed to the release.
49+
- 2 commits contributed to the release.
1950
- 1 commit was understood as [conventional](https://www.conventionalcommits.org).
2051
- 0 issues like '(#ID)' were seen in commit messages
2152

@@ -26,6 +57,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2657
<details><summary>view details</summary>
2758

2859
* **Uncategorized**
60+
- Release libquickjs-ng-sys v0.7.1 ([`77c034e`](https://github.com/Icemic/quickjs-rusty/commit/77c034eea75a26af3f726977b76d2ce3687883ca))
2961
- Improve cross-compilation support for Android in build script ([`8d5c593`](https://github.com/Icemic/quickjs-rusty/commit/8d5c593e0d09193fd1a5e6e8668f11c9dedbd45a))
3062
</details>
3163

libquickjs-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ license = "MIT"
99
name = "libquickjs-ng-sys"
1010
readme = "README.md"
1111
repository = "https://github.com/Icemic/quickjs-rusty"
12-
version = "0.7.1"
12+
version = "0.7.2"
1313

1414
[build-dependencies]
1515
bindgen = "0.71.1"

0 commit comments

Comments
 (0)