From b0ae8f28ed96ade93a828a1786a5ff984b83583f Mon Sep 17 00:00:00 2001 From: Rodrigo Serradura Date: Tue, 2 Jan 2024 00:40:54 -0300 Subject: [PATCH] Bump version to 0.11.0 --- CHANGELOG.md | 3 +++ lib/bcdd/result/version.rb | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1b9b6c4..7a7c821 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,5 @@ - [\[Unreleased\]](#unreleased) +- [\[0.11.0\] - 2024-01-02](#0110---2024-01-02) - [Added](#added) - [Changed](#changed) - [\[0.10.0\] - 2023-12-31](#0100---2023-12-31) @@ -35,6 +36,8 @@ ## [Unreleased] +## [0.11.0] - 2024-01-02 + ### Added - Add the `Given()` addon to produce a `Success(:given, value)` result. As the `Continue()` addon, it is ignored by the expectations. Use it to add a value to the result chain and invoke the next step (through `and_then`). diff --git a/lib/bcdd/result/version.rb b/lib/bcdd/result/version.rb index 4c98d96..12082be 100644 --- a/lib/bcdd/result/version.rb +++ b/lib/bcdd/result/version.rb @@ -2,6 +2,6 @@ module BCDD class Result - VERSION = '0.10.0' + VERSION = '0.11.0' end end