From 1bbc03bba7d13f7dafd28b76ab38b769f96f7acb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jon=20B=C3=B6rjesson?= Date: Mon, 20 Jan 2025 08:12:06 +0100 Subject: [PATCH 1/2] Remove no longer needed patch --- src/stdlib/iterator.cr | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 src/stdlib/iterator.cr diff --git a/src/stdlib/iterator.cr b/src/stdlib/iterator.cr deleted file mode 100644 index 624cd46d96..0000000000 --- a/src/stdlib/iterator.cr +++ /dev/null @@ -1,13 +0,0 @@ -module Iterator(T) - def self.empty - EmptyIterator(T).new - end - - private struct EmptyIterator(T) - include Iterator(T) - - def next - stop - end - end -end From d7bd301c43910780bf02ca2461a29dd3d1770eab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jon=20B=C3=B6rjesson?= Date: Mon, 20 Jan 2025 08:12:16 +0100 Subject: [PATCH 2/2] Update versions --- shard.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shard.yml b/shard.yml index 7127bd61a4..2b8c2a5735 100644 --- a/shard.yml +++ b/shard.yml @@ -37,6 +37,6 @@ development_dependencies: ameba: github: crystal-ameba/ameba -crystal: 1.13.2 +crystal: 1.15.0 license: Apache-2.0