diff --git a/CHANGELOG.md b/CHANGELOG.md
index bd45751..d5ddded 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,29 @@
+## v0.8.4 (2024-09-03)
+
+### New Features
+
+ - add `dyn arrow_array::Array` conversions for union arrays
+
+### Commit Statistics
+
+
+
+ - 1 commit contributed to the release.
+ - 1 commit was understood as [conventional](https://www.conventionalcommits.org).
+ - 1 unique issue was worked on: [#232](https://github.com/mbrobbel/narrow/issues/232)
+
+### Commit Details
+
+
+
+view details
+
+ * **[#232](https://github.com/mbrobbel/narrow/issues/232)**
+ - Add `dyn arrow_array::Array` conversions for union arrays ([`69b83cd`](https://github.com/mbrobbel/narrow/commit/69b83cdac7fc3a48e2b10c60b3b4bf2d627c52b0))
+
+
## v0.8.3 (2024-09-02)
### New Features
diff --git a/Cargo.lock b/Cargo.lock
index e439979..89c7f19 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -644,7 +644,7 @@ checksum = "f665ee40bc4a3c5590afb1e9677db74a508659dfd71e126420da8274909a0167"
[[package]]
name = "narrow"
-version = "0.8.3"
+version = "0.8.4"
dependencies = [
"arrow-array",
"arrow-buffer",
@@ -662,7 +662,7 @@ dependencies = [
[[package]]
name = "narrow-derive"
-version = "0.6.9"
+version = "0.6.10"
dependencies = [
"macrotest",
"once_cell",
diff --git a/Cargo.toml b/Cargo.toml
index 8da49b8..cc25648 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -15,7 +15,7 @@ members = ["narrow-derive"]
[package]
name = "narrow"
-version = "0.8.3"
+version = "0.8.4"
authors.workspace = true
edition.workspace = true
rust-version.workspace = true
@@ -48,7 +48,7 @@ arrow-array = { version = "52", default-features = false, optional = true }
arrow-buffer = { version = "52", default-features = false, optional = true }
arrow-schema = { version = "52", default-features = false, optional = true }
chrono = { version = "0.4.38", default-features = false, optional = true }
-narrow-derive = { path = "narrow-derive", version = "^0.6.9", optional = true }
+narrow-derive = { path = "narrow-derive", version = "^0.6.10", optional = true }
uuid = { version = "1.10.0", default-features = false, optional = true }
[dev-dependencies]
diff --git a/narrow-derive/CHANGELOG.md b/narrow-derive/CHANGELOG.md
index d92fd1b..d4403a8 100644
--- a/narrow-derive/CHANGELOG.md
+++ b/narrow-derive/CHANGELOG.md
@@ -1,7 +1,36 @@
+## v0.6.10 (2024-09-03)
+
+### Chore
+
+ - bump syn from 2.0.76 to 2.0.77
+
+### Commit Statistics
+
+
+
+ - 1 commit contributed to the release.
+ - 1 commit was understood as [conventional](https://www.conventionalcommits.org).
+ - 1 unique issue was worked on: [#231](https://github.com/mbrobbel/narrow/issues/231)
+
+### Commit Details
+
+
+
+view details
+
+ * **[#231](https://github.com/mbrobbel/narrow/issues/231)**
+ - Bump syn from 2.0.76 to 2.0.77 ([`a2eb1d9`](https://github.com/mbrobbel/narrow/commit/a2eb1d971746a99544adc21da3e594cbecf9531d))
+
+
## v0.6.9 (2024-09-02)
+
+
+
+
+
### Chore
- bump proc-macro-crate from 3.1.0 to 3.2.0
@@ -13,7 +42,7 @@
- - 4 commits contributed to the release.
+ - 5 commits contributed to the release.
- 17 days passed between releases.
- 4 commits were understood as [conventional](https://www.conventionalcommits.org).
- 4 unique issues were worked on: [#225](https://github.com/mbrobbel/narrow/issues/225), [#226](https://github.com/mbrobbel/narrow/issues/226), [#227](https://github.com/mbrobbel/narrow/issues/227), [#228](https://github.com/mbrobbel/narrow/issues/228)
@@ -32,6 +61,8 @@
- Bump syn from 2.0.75 to 2.0.76 ([`d327178`](https://github.com/mbrobbel/narrow/commit/d327178f451a06e931f6fd8c433564110c392e59))
* **[#228](https://github.com/mbrobbel/narrow/issues/228)**
- Bump proc-macro-crate from 3.1.0 to 3.2.0 ([`ceeb3ad`](https://github.com/mbrobbel/narrow/commit/ceeb3ad92517eed52fb98a1af3fdb151c88419c4))
+ * **Uncategorized**
+ - Release narrow-derive v0.6.9, narrow v0.8.3 ([`0446491`](https://github.com/mbrobbel/narrow/commit/0446491576ab85ac03d7027ba44202af26abbb72))
## v0.6.8 (2024-08-15)
diff --git a/narrow-derive/Cargo.toml b/narrow-derive/Cargo.toml
index 674c94d..31e72f8 100644
--- a/narrow-derive/Cargo.toml
+++ b/narrow-derive/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "narrow-derive"
-version = "0.6.9"
+version = "0.6.10"
authors.workspace = true
edition.workspace = true
rust-version.workspace = true