Skip to content

Commit 864759d

Browse files
committed
Release libquickjs-ng-sys v0.9.5, quickjs-rusty v0.9.5
1 parent 4e72cb6 commit 864759d

File tree

5 files changed

+63
-6
lines changed

5 files changed

+63
-6
lines changed

CHANGELOG.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,33 @@ 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.9.5 (2025-09-06)
9+
10+
### New Features
11+
12+
- <csr-id-f40c3a0d4050ab38b7f8981a2e905a67984b26f1/> handle JavaScript Proxy in array and object deserialization
13+
- <csr-id-bcf847df07dc580f5d451292168b287a3b1fcc1f/> add methods to check for Javascript Proxy and retrieve its target
14+
15+
### Commit Statistics
16+
17+
<csr-read-only-do-not-edit/>
18+
19+
- 2 commits contributed to the release.
20+
- 7 days passed between releases.
21+
- 2 commits were understood as [conventional](https://www.conventionalcommits.org).
22+
- 0 issues like '(#ID)' were seen in commit messages
23+
24+
### Commit Details
25+
26+
<csr-read-only-do-not-edit/>
27+
28+
<details><summary>view details</summary>
29+
30+
* **Uncategorized**
31+
- Handle JavaScript Proxy in array and object deserialization ([`f40c3a0`](https://github.com/Icemic/quickjs-rusty/commit/f40c3a0d4050ab38b7f8981a2e905a67984b26f1))
32+
- Add methods to check for Javascript Proxy and retrieve its target ([`bcf847d`](https://github.com/Icemic/quickjs-rusty/commit/bcf847df07dc580f5d451292168b287a3b1fcc1f))
33+
</details>
34+
835
## 0.9.4 (2025-08-30)
936

1037
### New Features

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.9.4"
11+
version = "0.9.5"
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.9.4", path = "./libquickjs-sys"}
24+
libquickjs-ng-sys = {version = "^0.9.5", 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: 31 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,35 @@ 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.9.5 (2025-09-06)
9+
10+
### Chore
11+
12+
- <csr-id-4e72cb6991d8fa93315b13645bbe5da3f09275e8/> upgrade quickjs-ng
13+
- <csr-id-21416c0a27edaa885853291fd0b6171bd0906fd9/> update quickjs-ng
14+
- <csr-id-5bfd13dbe1b1bf48523201bf609c2a8f6e96de7a/> update dependencies
15+
16+
### Commit Statistics
17+
18+
<csr-read-only-do-not-edit/>
19+
20+
- 3 commits contributed to the release over the course of 4 calendar days.
21+
- 26 days passed between releases.
22+
- 3 commits were understood as [conventional](https://www.conventionalcommits.org).
23+
- 0 issues like '(#ID)' were seen in commit messages
24+
25+
### Commit Details
26+
27+
<csr-read-only-do-not-edit/>
28+
29+
<details><summary>view details</summary>
30+
31+
* **Uncategorized**
32+
- Upgrade quickjs-ng ([`4e72cb6`](https://github.com/Icemic/quickjs-rusty/commit/4e72cb6991d8fa93315b13645bbe5da3f09275e8))
33+
- Update quickjs-ng ([`21416c0`](https://github.com/Icemic/quickjs-rusty/commit/21416c0a27edaa885853291fd0b6171bd0906fd9))
34+
- Update dependencies ([`5bfd13d`](https://github.com/Icemic/quickjs-rusty/commit/5bfd13dbe1b1bf48523201bf609c2a8f6e96de7a))
35+
</details>
36+
837
## 0.9.4 (2025-08-10)
938

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

1645
<csr-read-only-do-not-edit/>
1746

18-
- 1 commit contributed to the release.
47+
- 2 commits contributed to the release.
1948
- 23 days passed between releases.
2049
- 1 commit was understood as [conventional](https://www.conventionalcommits.org).
2150
- 0 issues like '(#ID)' were seen in commit messages
@@ -27,6 +56,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2756
<details><summary>view details</summary>
2857

2958
* **Uncategorized**
59+
- Release libquickjs-ng-sys v0.9.4, quickjs-rusty v0.9.3 ([`1e23a0a`](https://github.com/Icemic/quickjs-rusty/commit/1e23a0af3cba729c5a8754f078dc4d94561bcb64))
3060
- Update quickjs ([`f6e0a70`](https://github.com/Icemic/quickjs-rusty/commit/f6e0a70bed90172a9dbee44023d29e228e02c16a))
3161
</details>
3262

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.9.4"
12+
version = "0.9.5"
1313

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

0 commit comments

Comments
 (0)