From 740099a8048c126325c18e98a6b7dfdab9eeed6f Mon Sep 17 00:00:00 2001 From: mugimaru Date: Tue, 19 Jul 2022 16:10:36 +0300 Subject: [PATCH] =?UTF-8?q?bump=20version=200.2.1=20=E2=86=92=200.3.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 6 +++++- CHANGELOG.md | 2 +- Gemfile.lock | 2 +- README.md | 2 +- lib/http_health_check/version.rb | 2 +- 5 files changed, 9 insertions(+), 5 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 320f66e..92f519d 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.2.1 +current_version = 0.3.0 commit = True tag = True tag_name = {new_version} @@ -8,3 +8,7 @@ message = bump version {current_version} → {new_version} [bumpversion:file:lib/http_health_check/version.rb] [bumpversion:file:README.md] + +[bumpversion:file:Gemfile.lock] +search = http_health_check ({current_version}) +replace = http_health_check ({new_version}) diff --git a/CHANGELOG.md b/CHANGELOG.md index ce5ad74..3fccf9d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # CHANGELOG.md -## 0.3.0 (unreleased) +## 0.3.0 (2022-07-19) Features: diff --git a/Gemfile.lock b/Gemfile.lock index 714dba0..25ba359 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - http_health_check (0.2.1) + http_health_check (0.3.0) rack (~> 2.0) webrick diff --git a/README.md b/README.md index 9496caf..3846cf9 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ HttpHealthCheck is built with kubernetes health probes in mind, but it can be us Add this line to your application's Gemfile: ```ruby -gem 'http_health_check', '~> 0.2.1' +gem 'http_health_check', '~> 0.3.0' ``` And then execute: diff --git a/lib/http_health_check/version.rb b/lib/http_health_check/version.rb index 95682d5..591ea1c 100644 --- a/lib/http_health_check/version.rb +++ b/lib/http_health_check/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module HttpHealthCheck - VERSION = '0.2.1' + VERSION = '0.3.0' end