Skip to content

Commit 4d1dc54

Browse files
committed
Release libquickjs-ng-sys v0.7.0, quickjs-rusty v0.7.0, safety bump quickjs-rusty v0.7.0
1 parent a1a7927 commit 4d1dc54

File tree

4 files changed

+58
-7
lines changed

4 files changed

+58
-7
lines changed

CHANGELOG.md

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@ 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-
## Unreleased
8+
## 0.7.0 (2025-01-10)
9+
10+
<csr-id-3f65492ed4852921c880770871f5d84d16766418/>
911

1012
### Bug Fixes
1113

@@ -99,6 +101,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99101

100102
## v0.6.1 (2024-06-30)
101103

104+
<csr-id-68d328b982f4c5297a13877d68dc0e423a1de055/>
105+
102106
### Chore
103107

104108
- <csr-id-68d328b982f4c5297a13877d68dc0e423a1de055/> clippy fix
@@ -131,6 +135,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
131135

132136
## v0.6.0 (2024-06-20)
133137

138+
<csr-id-e636641a365add28ccb3f6b824ba56d186ae8f0d/>
139+
134140
### Chore
135141

136142
- <csr-id-e636641a365add28ccb3f6b824ba56d186ae8f0d/> rename to quickjs-rusty
@@ -217,6 +223,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
217223

218224
## v0.5.0 (2024-04-09)
219225

226+
<csr-id-7e922b5323bc68e82fb988c444a86a90d2065533/>
227+
<csr-id-487663c0dcb542130ad256d0c61c751418d6638d/>
228+
220229
### Other
221230

222231
- <csr-id-7e922b5323bc68e82fb988c444a86a90d2065533/> removes dependence on old ser impl
@@ -471,6 +480,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
471480

472481
## v0.2.0 (2023-06-23)
473482

483+
<csr-id-86f229fd49a527b6608aaad5e38dc2208f89a363/>
484+
474485
### New Features
475486

476487
- <csr-id-5e742dffc2cb49ac181e3df54fbf351e3984e2a5/> run module error handling
@@ -507,6 +518,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
507518

508519
## v0.1.1 (2023-06-22)
509520

521+
<csr-id-e9f0d239b6798fa86e99e0f0d238e800f8b4993d/>
522+
<csr-id-d82c8526909e6574807f602bba19faac26b85d9f/>
523+
510524
### New Features
511525

512526
- <csr-id-2f3fac139680f953a2a38e9d36ace023d8dfffe8/> add methods to run module codes
@@ -547,6 +561,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
547561

548562
## v0.1.0 (2021-08-10)
549563

564+
<csr-id-870d45fb3db02791a4810b5e8a17a8b0c768cf7c/>
565+
<csr-id-4307fd83a8681a8ce5f84695cbca4e02d8d3795b/>
566+
<csr-id-142af5003ae4f984f0537535a2713f7f14cdfbce/>
567+
<csr-id-10a53ad3afb5586d58cc97913419434daebf71ab/>
568+
<csr-id-8f4b124b00c46dce5ba12eb05d615cae5448ead8/>
569+
550570
### Chore
551571

552572
- <csr-id-870d45fb3db02791a4810b5e8a17a8b0c768cf7c/> Add _NonExhaustive variant to Value

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.6.3"
11+
version = "0.7.0"
1212

1313
[package.metadata.docs.rs]
1414
features = ["chrono", "bigint", "log"]
@@ -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.6.1", path = "./libquickjs-sys"}
24+
libquickjs-ng-sys = {version = "^0.7.0", path = "./libquickjs-sys"}
2525
log = {version = "0.4.8", optional = true}
2626
num-bigint = {version = "0.4.4", optional = true}
2727
num-traits = {version = "0.2.0", optional = true}

libquickjs-sys/CHANGELOG.md

Lines changed: 34 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,23 @@ 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-
## Unreleased
8+
## 0.7.0 (2025-01-10)
9+
10+
<csr-id-65bf6cb7a8176c67ef1669465a52cc8694e3be88/>
11+
<csr-id-657d42ccc888b183e33f47c237a34cdeee305137/>
12+
<csr-id-9dad3a324624a1822476a0b44a57c86c836625a8/>
13+
<csr-id-3f65492ed4852921c880770871f5d84d16766418/>
914

1015
### Chore
1116

1217
- <csr-id-65bf6cb7a8176c67ef1669465a52cc8694e3be88/> rename old CHANGELOG.md
1318
- <csr-id-657d42ccc888b183e33f47c237a34cdeee305137/> update edition in Cargo.toml to 2021
1419
- <csr-id-9dad3a324624a1822476a0b44a57c86c836625a8/> fix lint of build.rs
1520

21+
### Chore
22+
23+
- <csr-id-a1a7927ad2b88700746d2a80911df4ed540490fd/> add new changelog files
24+
1625
### New Features
1726

1827
- <csr-id-9ab8235979cf218ac9c70cbd1b6104642fdf126a/> specify clang as the compiler in build script
@@ -32,9 +41,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3241

3342
<csr-read-only-do-not-edit/>
3443

35-
- 10 commits contributed to the release over the course of 2 calendar days.
44+
- 11 commits contributed to the release over the course of 2 calendar days.
3645
- 186 days passed between releases.
37-
- 9 commits were understood as [conventional](https://www.conventionalcommits.org).
46+
- 10 commits were understood as [conventional](https://www.conventionalcommits.org).
3847
- 0 issues like '(#ID)' were seen in commit messages
3948

4049
### Commit Details
@@ -44,6 +53,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4453
<details><summary>view details</summary>
4554

4655
* **Uncategorized**
56+
- Add new changelog files ([`a1a7927`](https://github.com/Icemic/quickjs-rusty/commit/a1a7927ad2b88700746d2a80911df4ed540490fd))
4757
- Rename old CHANGELOG.md ([`65bf6cb`](https://github.com/Icemic/quickjs-rusty/commit/65bf6cb7a8176c67ef1669465a52cc8694e3be88))
4858
- Update edition in Cargo.toml to 2021 ([`657d42c`](https://github.com/Icemic/quickjs-rusty/commit/657d42ccc888b183e33f47c237a34cdeee305137))
4959
- Fix lint of build.rs ([`9dad3a3`](https://github.com/Icemic/quickjs-rusty/commit/9dad3a324624a1822476a0b44a57c86c836625a8))
@@ -58,6 +68,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
5868

5969
## v0.6.1 (2024-07-08)
6070

71+
<csr-id-e89081e8eee4c188ecc06336a42b30e5b0a74f2a/>
72+
6173
### Chore
6274

6375
- <csr-id-e89081e8eee4c188ecc06336a42b30e5b0a74f2a/> Release
@@ -88,6 +100,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88100

89101
## v0.6.0 (2024-06-20)
90102

103+
<csr-id-80b6c93ef819b303cd328f02f781eaa1efa91bd9/>
104+
<csr-id-e636641a365add28ccb3f6b824ba56d186ae8f0d/>
105+
<csr-id-efa4b7375e53bb746021eaceab246a34cc27879f/>
106+
<csr-id-23231eef7264900761eebd3232675a16b5a26800/>
107+
<csr-id-e9f0d239b6798fa86e99e0f0d238e800f8b4993d/>
108+
<csr-id-094faba594805610d838619cfe9066fd2b876c0d/>
109+
91110
### Chore
92111

93112
- <csr-id-80b6c93ef819b303cd328f02f781eaa1efa91bd9/> bump to 0.6.0
@@ -154,6 +173,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
154173

155174
## v0.1.0 (2021-08-10)
156175

176+
<csr-id-ff6e5a5bc1f000fe8c477410ada1a9c8fc8b6510/>
177+
<csr-id-7dc5d352e8e907c040648b689e6588a1273abcbd/>
178+
<csr-id-6c144258b6415d97bb44bad6e4defd735c39f2af/>
179+
<csr-id-f01400a5523359801b95874037050e8634d150c4/>
180+
<csr-id-ebf71e465392bf93fde1662299ef0deda6e93a3b/>
181+
<csr-id-83cd850782efc081b2aa55dd7bb8f52d951f2d72/>
182+
<csr-id-d705b7f85f226b8bd4ae3b6706fffdbc5b2cda40/>
183+
<csr-id-306835e393d7e49f36efbca0a727b96fdb2601c1/>
184+
<csr-id-ef0e6399ca24f68c32649e3f660f989f6a269adf/>
185+
<csr-id-a89c6fd9300114afb6cf91cbf274224adc7ae88c/>
186+
<csr-id-d5d77f8f278b815204a6deaef9b3aec28fa28e9f/>
187+
157188
### Documentation
158189

159190
- <csr-id-00c78c874c5937fc4363b39c98a2ea1dd651ad40/> Add instructions for updating embedded quickjs

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.6.1"
12+
version = "0.7.0"
1313

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

0 commit comments

Comments
 (0)