From efc8c8c9f53d6a1c095343a542d9dc9642baec05 Mon Sep 17 00:00:00 2001 From: Akinori MUSHA Date: Fri, 8 Dec 2023 21:36:12 +0900 Subject: [PATCH] Bump version to 1.0.4 --- CHANGELOG.md | 2 +- lib/set.rb | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cb09b70..7fdbced 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Set Changelog -# 1.0.x (Unreleased) +# 1.0.4 (2023-12-08) * Enhancements * Avoid the `block or return` pattern to save Proc allocations [#29][] ([@casperisfine][]) diff --git a/lib/set.rb b/lib/set.rb index e55639d..a946d3c 100644 --- a/lib/set.rb +++ b/lib/set.rb @@ -3,7 +3,7 @@ # # set.rb - defines the Set class # -# Copyright (c) 2002-2020 Akinori MUSHA +# Copyright (c) 2002-2023 Akinori MUSHA # # Documentation by Akinori MUSHA and Gavin Sinclair. # @@ -216,7 +216,7 @@ # has been modified while an element in the set. # class Set - VERSION = "1.0.3" + VERSION = "1.0.4" include Enumerable