From f668124c1b19cbc6345910ff8ff8271cabe06100 Mon Sep 17 00:00:00 2001 From: apainintheneck Date: Sun, 31 Mar 2024 11:24:40 -0700 Subject: [PATCH] Prep for v1.0.0 The only breaking change here is dropping support for Ruby 2.7. I did that a few weeks ago and now it looks like the countries gem has done the same thing. It was beyond end of life so that is not surprising. Beyond that there were a bunch of small dependency updates but nothing really worth mentioning. You can look at the diff if you're curious. --- CHANGELOG.md | 4 ++++ Gemfile.lock | 2 +- README.md | 2 +- lib/atlasq/version.rb | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 42abb58..daa0b59 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## [1.0.0] 2024-03-31 + +- Drop support for Ruby 2.7 + ## [0.4.0] 2024-02-21 - Fix bug in data caching where cache files were read multiple times diff --git a/Gemfile.lock b/Gemfile.lock index b24ae2a..2f06cec 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - atlasq (0.4.0) + atlasq (1.0.0) tty-pager (~> 0.14) GEM diff --git a/README.md b/README.md index b6a2166..1aa1ea7 100644 --- a/README.md +++ b/README.md @@ -93,7 +93,7 @@ OPTIONS : Display this page -v/--version - : Display the version (0.4.0) + : Display the version (1.0.0) -d/--debug : Display debug output diff --git a/lib/atlasq/version.rb b/lib/atlasq/version.rb index 38e8dba..2c1807e 100644 --- a/lib/atlasq/version.rb +++ b/lib/atlasq/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Atlasq - VERSION = "0.4.0" + VERSION = "1.0.0" end