diff --git a/CHANGELOG.md b/CHANGELOG.md
index 8cadce0..ff5cc39 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -6,6 +6,23 @@ All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
+## [0.5.8] - 2025-02-19
+
+This release fixes compilation errors for NetBSD
+
+Issues: [#65](https://github.com/muja/unrar.rs/issues/65)
+
+### Bug Fixes
+
+- (netbsd) use libstd++ on netbsd as libc++ is not available (8d29b6e, #65)
+
+### Miscellaneous / Refactors
+
+- (changelog) include dependency updates in changelog (efdf4e2)
+- (deps) upgrade bitflags to v2 (22a065b)
+- remove macos 12 from matrix (b475690)
+
+
## [0.5.7] - 2024-12-04
This release fixes extraction of entries with unicode filenames inside RAR archives
diff --git a/Cargo.toml b/Cargo.toml
index 0ec6c83..14fe96b 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "unrar"
-version = "0.5.7"
+version = "0.5.8"
authors = [
"Danyel Bayraktar ",
"vjoki ",
diff --git a/unrar_sys/Cargo.toml b/unrar_sys/Cargo.toml
index 8416e74..eb5820b 100644
--- a/unrar_sys/Cargo.toml
+++ b/unrar_sys/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "unrar_sys"
-version = "0.5.6"
+version = "0.5.8"
authors = ["Danyel Bayraktar "]
build = "build.rs"