From 3aa5d8ae6b1298b21e2fb0dd583afa797b0e9635 Mon Sep 17 00:00:00 2001 From: Vladislav Trotsenko Date: Thu, 28 Mar 2024 12:23:54 +0100 Subject: [PATCH] Technical/Update gem version (#24) * Updated gem version * Updated changelog --- CHANGELOG.md | 15 +++++++++++++++ lib/on_strum/healthcheck/version.rb | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2f8c4c2..8ea0bcc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,21 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.2.0] - 2024-03-28 + +### Added + +- Added ability to use configuration with default settings without block passing + +```ruby +OnStrum::Healthcheck.configure # It will create configuration instance with default settings +``` + +### Updated + +- Updated `OnStrum::Healthcheck.configure`, tests +- Updated gem documentation + ## [0.1.0] - 2024-03-26 ### Added diff --git a/lib/on_strum/healthcheck/version.rb b/lib/on_strum/healthcheck/version.rb index b3d3c1d..2de7b4d 100644 --- a/lib/on_strum/healthcheck/version.rb +++ b/lib/on_strum/healthcheck/version.rb @@ -2,6 +2,6 @@ module OnStrum module Healthcheck - VERSION = '0.1.0' + VERSION = '0.2.0' end end