Skip to content

Commit f901091

Browse files
committed
Release libquickjs-ng-sys v0.10.0, quickjs-rusty v0.11.0, safety bump quickjs-rusty v0.11.0
1 parent cd2f59c commit f901091

5 files changed

Lines changed: 59 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,32 @@ 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.11.0 (2026-02-02)
9+
10+
### New Features
11+
12+
- <csr-id-60d7ff02a98912d09b7028b15e4f87b64b15f730/> add support for QuickJS rope strings
13+
14+
### Commit Statistics
15+
16+
<csr-read-only-do-not-edit/>
17+
18+
- 2 commits contributed to the release over the course of 25 calendar days.
19+
- 41 days passed between releases.
20+
- 1 commit was understood as [conventional](https://www.conventionalcommits.org).
21+
- 0 issues like '(#ID)' were seen in commit messages
22+
23+
### Commit Details
24+
25+
<csr-read-only-do-not-edit/>
26+
27+
<details><summary>view details</summary>
28+
29+
* **Uncategorized**
30+
- Add support for QuickJS rope strings ([`60d7ff0`](https://github.com/Icemic/quickjs-rusty/commit/60d7ff02a98912d09b7028b15e4f87b64b15f730))
31+
- Upgrade to latest quickjs-ng ([`588b485`](https://github.com/Icemic/quickjs-rusty/commit/588b485e988b85c6be40a3be5bfb16ad5e1cfb68))
32+
</details>
33+
834
## 0.10.3 (2025-12-22)
935

1036
### 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.10.3"
11+
version = "0.11.0"
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.6", path = "./libquickjs-sys"}
24+
libquickjs-ng-sys = {version = "^0.10.0", 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: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,32 @@ 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.10.0 (2026-02-02)
9+
10+
### New Features
11+
12+
- <csr-id-60d7ff02a98912d09b7028b15e4f87b64b15f730/> add support for QuickJS rope strings
13+
14+
### Commit Statistics
15+
16+
<csr-read-only-do-not-edit/>
17+
18+
- 2 commits contributed to the release over the course of 25 calendar days.
19+
- 44 days passed between releases.
20+
- 1 commit was understood as [conventional](https://www.conventionalcommits.org).
21+
- 0 issues like '(#ID)' were seen in commit messages
22+
23+
### Commit Details
24+
25+
<csr-read-only-do-not-edit/>
26+
27+
<details><summary>view details</summary>
28+
29+
* **Uncategorized**
30+
- Add support for QuickJS rope strings ([`60d7ff0`](https://github.com/Icemic/quickjs-rusty/commit/60d7ff02a98912d09b7028b15e4f87b64b15f730))
31+
- Upgrade to latest quickjs-ng ([`588b485`](https://github.com/Icemic/quickjs-rusty/commit/588b485e988b85c6be40a3be5bfb16ad5e1cfb68))
32+
</details>
33+
834
## 0.9.6 (2025-12-19)
935

1036
### New Features
@@ -15,7 +41,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1541

1642
<csr-read-only-do-not-edit/>
1743

18-
- 1 commit contributed to the release.
44+
- 2 commits contributed to the release.
1945
- 104 days passed between releases.
2046
- 1 commit was understood as [conventional](https://www.conventionalcommits.org).
2147
- 0 issues like '(#ID)' were seen in commit messages
@@ -27,6 +53,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2753
<details><summary>view details</summary>
2854

2955
* **Uncategorized**
56+
- Release libquickjs-ng-sys v0.9.6, quickjs-rusty v0.10.1 ([`830d2a6`](https://github.com/Icemic/quickjs-rusty/commit/830d2a642c26fd92c82237a0585a23a5bff81c74))
3057
- Add new extension functions for JavaScript interoperability ([`2560a66`](https://github.com/Icemic/quickjs-rusty/commit/2560a66131d9f1c6c858e6a20dff2522f916d591))
3158
</details>
3259

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.6"
12+
version = "0.10.0"
1313

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

0 commit comments

Comments
 (0)