Skip to content

Commit a4fbde3

Browse files
committed
Release libquickjs-ng-sys v0.9.1, quickjs-rusty v0.9.1
1 parent 9647c71 commit a4fbde3

File tree

5 files changed

+62
-6
lines changed

5 files changed

+62
-6
lines changed

CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,31 @@ 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.1 (2025-06-09)
9+
10+
### Bug Fixes
11+
12+
- <csr-id-2e64441587cb75542878ffda0f2fb58aeaa12703/> update references to quickjs-ng and quickjs-rusty in documentation
13+
14+
### Commit Statistics
15+
16+
<csr-read-only-do-not-edit/>
17+
18+
- 1 commit contributed to the release.
19+
- 36 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+
- Update references to quickjs-ng and quickjs-rusty in documentation ([`2e64441`](https://github.com/Icemic/quickjs-rusty/commit/2e64441587cb75542878ffda0f2fb58aeaa12703))
31+
</details>
32+
833
## 0.9.0 (2025-05-03)
934

1035
### 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.0"
11+
version = "0.9.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.9.0", path = "./libquickjs-sys"}
24+
libquickjs-ng-sys = {version = "^0.9.1", 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: 32 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,36 @@ 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.1 (2025-06-09)
9+
10+
### New Features
11+
12+
- <csr-id-9647c719b7e02f168d3847e67b02ce430abc1522/> upgrade quickjs-ng to v0.10.1
13+
14+
### Bug Fixes
15+
16+
- <csr-id-2e64441587cb75542878ffda0f2fb58aeaa12703/> update references to quickjs-ng and quickjs-rusty in documentation
17+
18+
### Commit Statistics
19+
20+
<csr-read-only-do-not-edit/>
21+
22+
- 2 commits contributed to the release.
23+
- 36 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+
- Upgrade quickjs-ng to v0.10.1 ([`9647c71`](https://github.com/Icemic/quickjs-rusty/commit/9647c719b7e02f168d3847e67b02ce430abc1522))
35+
- Update references to quickjs-ng and quickjs-rusty in documentation ([`2e64441`](https://github.com/Icemic/quickjs-rusty/commit/2e64441587cb75542878ffda0f2fb58aeaa12703))
36+
</details>
37+
838
## 0.9.0 (2025-05-03)
939

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

1646
<csr-read-only-do-not-edit/>
1747

18-
- 2 commits contributed to the release.
48+
- 3 commits contributed to the release.
1949
- 41 days passed between releases.
2050
- 1 commit was understood as [conventional](https://www.conventionalcommits.org).
2151
- 0 issues like '(#ID)' were seen in commit messages
@@ -27,6 +57,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2757
<details><summary>view details</summary>
2858

2959
* **Uncategorized**
60+
- Release libquickjs-ng-sys v0.9.0, quickjs-rusty v0.9.0, safety bump quickjs-rusty v0.9.0 ([`8026afd`](https://github.com/Icemic/quickjs-rusty/commit/8026afdcc235e09f1003bdeb5789258d3a2eee4d))
3061
- Optimize BigInt conversion by adding support for short BigInt ([`55eb87f`](https://github.com/Icemic/quickjs-rusty/commit/55eb87f8f6705b928cda898325200d0ee63d960c))
3162
- Feat: upgrade quickjs-ng to v0.10.0; fix: compile errors ([`5cf751f`](https://github.com/Icemic/quickjs-rusty/commit/5cf751f4f4ca60da776540629ce11fe7cd900c64))
3263
</details>

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.0"
12+
version = "0.9.1"
1313

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

0 commit comments

Comments
 (0)