From ee97a4e3aad19ce8f6d2d4ebfda8ed6fe3b17ebe Mon Sep 17 00:00:00 2001 From: apainintheneck Date: Sat, 16 Dec 2023 18:51:19 -0800 Subject: [PATCH] Update version to 0.2.0 --- CHANGELOG.md | 2 +- Gemfile.lock | 2 +- README.md | 2 +- lib/atlasq/version.rb | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d48a156..8efd27c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## [Unreleased] +## [0.2.0] - [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 1795b61..bd5daf9 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - atlasq (0.1.0) + atlasq (0.2.0) countries (~> 5.7) iso-639 (~> 0.3) money (~> 6.9) diff --git a/README.md b/README.md index add20dc..11ba277 100644 --- a/README.md +++ b/README.md @@ -83,7 +83,7 @@ OPTIONS : Display this page -v/--version - : Display the version (0.1.0) + : Display the version (0.2.0) -d/--debug : Display debug output diff --git a/lib/atlasq/version.rb b/lib/atlasq/version.rb index 6604e21..acb99ad 100644 --- a/lib/atlasq/version.rb +++ b/lib/atlasq/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Atlasq - VERSION = "0.1.0" + VERSION = "0.2.0" end