diff --git a/CHANGELOG.md b/CHANGELOG.md
index 8efd27c..12f344b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,8 @@
-## [0.2.0]
+## [0.3.0] 2023-12-30
+
+- [PR 24](https://github.com/apainintheneck/atlasq/pull/24) Cache Data and Remove Most Runtime Dependencies
+
+## [0.2.0] 2023-12-16
 
 - [PR 15](https://github.com/apainintheneck/atlasq/pull/15) Add partial matching support for countries and currencies
 - [PR 21](https://github.com/apainintheneck/atlasq/pull/21) Add search index to speed up partial match searches by country name
diff --git a/Gemfile.lock b/Gemfile.lock
index 471f49d..03ba442 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -1,7 +1,7 @@
 PATH
   remote: .
   specs:
-    atlasq (0.2.0)
+    atlasq (0.3.0)
       tty-pager (~> 0.14)
 
 GEM
diff --git a/README.md b/README.md
index b5a9d7a..a20a8df 100644
--- a/README.md
+++ b/README.md
@@ -83,7 +83,7 @@ OPTIONS
     : Display this page
 
   -v/--version
-    : Display the version (0.2.0)
+    : Display the version (0.3.0)
 
   -d/--debug
     : Display debug output
diff --git a/lib/atlasq/version.rb b/lib/atlasq/version.rb
index acb99ad..ba00656 100644
--- a/lib/atlasq/version.rb
+++ b/lib/atlasq/version.rb
@@ -1,5 +1,5 @@
 # frozen_string_literal: true
 
 module Atlasq
-  VERSION = "0.2.0"
+  VERSION = "0.3.0"
 end