diff --git a/CHANGELOG.md b/CHANGELOG.md
index b5f6c69..373d7c0 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,19 @@
+
+## 0.1.1 Initial Release (2024-03-28)
+
+### Features
+
+- Adds metrics for peer endpoints ([#5](https://github.com/kbknapp/wireguard_exporter/pull/5)) (Thanks to [@furmur](https://github.com/furmur))
+- Adds peer aliases ([#1](https://github.com/kbknapp/wireguard_exporter/pull/1))
+
+### Maintanance
+
+- Switch crate `chrono` for `time` ([#3](https://github.com/kbknapp/wireguard_exporter/pull/3))
+
+### Documentation
+
+- Fix links in README ([#2](https://github.com/kbknapp/wireguard_exporter/pull/2))
+
## 0.1.0 Initial Release (2021-11-20)
diff --git a/Cargo.lock b/Cargo.lock
index 6ef35a6..997191f 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -833,7 +833,7 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
[[package]]
name = "wireguard_exporter"
-version = "0.1.0"
+version = "0.1.1"
dependencies = [
"base64",
"clap",
diff --git a/Cargo.toml b/Cargo.toml
index 1702ea8..3f85457 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "wireguard_exporter"
-version = "0.1.0"
+version = "0.1.1"
edition = "2021"
authors = [
"Kevin K. ",