Skip to content

Commit e3f5ce6

Browse files
Release narrow-derive v0.7.0, narrow v0.10.0, safety bump narrow v0.10.0
1 parent 141da63 commit e3f5ce6

File tree

5 files changed

+79
-6
lines changed

5 files changed

+79
-6
lines changed

CHANGELOG.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,36 @@
11

22

3+
## v0.10.0 (2024-10-01)
4+
5+
### New Features
6+
7+
- <csr-id-eea8fc443e5ee2e224a99d15fc50d2c40efec41f/> add `data_type` method to `arrow-rs` `Array` extension trait
8+
9+
### New Features (BREAKING)
10+
11+
- <csr-id-22608e3bdd59da2774c74eed714d752e58c33818/> project struct array fields in `arrow` conversion
12+
13+
### Commit Statistics
14+
15+
<csr-read-only-do-not-edit/>
16+
17+
- 2 commits contributed to the release.
18+
- 10 days passed between releases.
19+
- 2 commits were understood as [conventional](https://www.conventionalcommits.org).
20+
- 2 unique issues were worked on: [#253](https://github.com/mbrobbel/narrow/issues/253), [#254](https://github.com/mbrobbel/narrow/issues/254)
21+
22+
### Commit Details
23+
24+
<csr-read-only-do-not-edit/>
25+
26+
<details><summary>view details</summary>
27+
28+
* **[#253](https://github.com/mbrobbel/narrow/issues/253)**
29+
- Add `data_type` method to `arrow-rs` `Array` extension trait ([`eea8fc4`](https://github.com/mbrobbel/narrow/commit/eea8fc443e5ee2e224a99d15fc50d2c40efec41f))
30+
* **[#254](https://github.com/mbrobbel/narrow/issues/254)**
31+
- Project struct array fields in `arrow` conversion ([`22608e3`](https://github.com/mbrobbel/narrow/commit/22608e3bdd59da2774c74eed714d752e58c33818))
32+
</details>
33+
334
## v0.9.2 (2024-09-20)
435

536
### 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
@@ -15,7 +15,7 @@ members = ["narrow-derive"]
1515

1616
[package]
1717
name = "narrow"
18-
version = "0.9.2"
18+
version = "0.10.0"
1919
authors.workspace = true
2020
edition.workspace = true
2121
rust-version.workspace = true
@@ -48,7 +48,7 @@ arrow-array = { version = "52", default-features = false, optional = true }
4848
arrow-buffer = { version = "52", default-features = false, optional = true }
4949
arrow-schema = { version = "52", default-features = false, optional = true }
5050
chrono = { version = "0.4.38", default-features = false, optional = true }
51-
narrow-derive = { path = "narrow-derive", version = "^0.6.11", optional = true }
51+
narrow-derive = { path = "narrow-derive", version = "^0.7.0", optional = true }
5252
uuid = { version = "1.10.0", default-features = false, optional = true }
5353

5454
[dev-dependencies]

narrow-derive/CHANGELOG.md

Lines changed: 43 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,45 @@
11

22

3+
## v0.7.0 (2024-10-01)
4+
5+
### Chore
6+
7+
- <csr-id-60f078caa9a637255d8eebd57610f19267724642/> bump once_cell from 1.19.0 to 1.20.1
8+
- <csr-id-5201af299eb62f8861d8f9334a7de3cbb50028ab/> bump syn from 2.0.77 to 2.0.79
9+
- <csr-id-7cddc08759f06fe8555526379e00d75b064de339/> revert bump of once_cell from 1.19.0 to 1.20.0
10+
- <csr-id-ade7695f935ee00cc9bc7e6d849e704e7d4fe6f2/> bump once_cell from 1.19.0 to 1.20.0
11+
12+
### New Features (BREAKING)
13+
14+
- <csr-id-22608e3bdd59da2774c74eed714d752e58c33818/> project struct array fields in `arrow` conversion
15+
16+
### Commit Statistics
17+
18+
<csr-read-only-do-not-edit/>
19+
20+
- 5 commits contributed to the release.
21+
- 26 days passed between releases.
22+
- 5 commits were understood as [conventional](https://www.conventionalcommits.org).
23+
- 5 unique issues were worked on: [#249](https://github.com/mbrobbel/narrow/issues/249), [#252](https://github.com/mbrobbel/narrow/issues/252), [#254](https://github.com/mbrobbel/narrow/issues/254), [#257](https://github.com/mbrobbel/narrow/issues/257), [#258](https://github.com/mbrobbel/narrow/issues/258)
24+
25+
### Commit Details
26+
27+
<csr-read-only-do-not-edit/>
28+
29+
<details><summary>view details</summary>
30+
31+
* **[#249](https://github.com/mbrobbel/narrow/issues/249)**
32+
- Bump once_cell from 1.19.0 to 1.20.0 ([`ade7695`](https://github.com/mbrobbel/narrow/commit/ade7695f935ee00cc9bc7e6d849e704e7d4fe6f2))
33+
* **[#252](https://github.com/mbrobbel/narrow/issues/252)**
34+
- Revert bump of once_cell from 1.19.0 to 1.20.0 ([`7cddc08`](https://github.com/mbrobbel/narrow/commit/7cddc08759f06fe8555526379e00d75b064de339))
35+
* **[#254](https://github.com/mbrobbel/narrow/issues/254)**
36+
- Project struct array fields in `arrow` conversion ([`22608e3`](https://github.com/mbrobbel/narrow/commit/22608e3bdd59da2774c74eed714d752e58c33818))
37+
* **[#257](https://github.com/mbrobbel/narrow/issues/257)**
38+
- Bump syn from 2.0.77 to 2.0.79 ([`5201af2`](https://github.com/mbrobbel/narrow/commit/5201af299eb62f8861d8f9334a7de3cbb50028ab))
39+
* **[#258](https://github.com/mbrobbel/narrow/issues/258)**
40+
- Bump once_cell from 1.19.0 to 1.20.1 ([`60f078c`](https://github.com/mbrobbel/narrow/commit/60f078caa9a637255d8eebd57610f19267724642))
41+
</details>
42+
343
## v0.6.11 (2024-09-05)
444

545
### New Features
@@ -10,7 +50,7 @@
1050

1151
<csr-read-only-do-not-edit/>
1252

13-
- 1 commit contributed to the release.
53+
- 2 commits contributed to the release.
1454
- 1 day passed between releases.
1555
- 1 commit was understood as [conventional](https://www.conventionalcommits.org).
1656
- 1 unique issue was worked on: [#242](https://github.com/mbrobbel/narrow/issues/242)
@@ -23,6 +63,8 @@
2363

2464
* **[#242](https://github.com/mbrobbel/narrow/issues/242)**
2565
- Impl `Clone` for arrays ([`e77196c`](https://github.com/mbrobbel/narrow/commit/e77196c759e488b8a7ab92d5864e43e13ce243f3))
66+
* **Uncategorized**
67+
- Release narrow-derive v0.6.11, narrow v0.8.5 ([`05377e2`](https://github.com/mbrobbel/narrow/commit/05377e22332dda43eb532fcb1682db64be6c07cd))
2668
</details>
2769

2870
## v0.6.10 (2024-09-03)

narrow-derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "narrow-derive"
3-
version = "0.6.11"
3+
version = "0.7.0"
44
authors.workspace = true
55
edition.workspace = true
66
rust-version.workspace = true

0 commit comments

Comments
 (0)