From 2f0a45df1ca04050461d1e970a46e7646cb94d49 Mon Sep 17 00:00:00 2001 From: apainintheneck Date: Sat, 30 Dec 2023 20:47:05 -0800 Subject: [PATCH] Release 0.3.0 --- CHANGELOG.md | 6 +++++- Gemfile.lock | 2 +- README.md | 2 +- lib/atlasq/version.rb | 2 +- 4 files changed, 8 insertions(+), 4 deletions(-) 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