From 3a698c7076306390ed7ec89895b4b2382c8bd837 Mon Sep 17 00:00:00 2001 From: Jon Pascoe Date: Thu, 18 Jul 2024 22:25:18 +0000 Subject: [PATCH 1/4] Update CHANGELOG.md with release number and date --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2169c640..4e624ca6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file. 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). -## [Unreleased] +## [0.17.0] - 2024-07-18 ### Added - Indonesian translations. ([#505](https://github.com/seejohnrun/ice_cube/pull/505)) by [@achmiral](https://github.com/achmiral) From 84ee298ccdd5a2652079a41f7432cf84fbf5c2d7 Mon Sep 17 00:00:00 2001 From: Jon Pascoe Date: Thu, 18 Jul 2024 22:29:07 +0000 Subject: [PATCH 2/4] Update version number --- lib/ice_cube/version.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ice_cube/version.rb b/lib/ice_cube/version.rb index a71bb32a..5dda674c 100644 --- a/lib/ice_cube/version.rb +++ b/lib/ice_cube/version.rb @@ -1,3 +1,3 @@ module IceCube - VERSION = "0.16.4" + VERSION = "0.17.0" end From bf5a4077fdd5e002a8b3292e20c6da7ab185dbb6 Mon Sep 17 00:00:00 2001 From: Jon Pascoe Date: Thu, 18 Jul 2024 22:29:15 +0000 Subject: [PATCH 3/4] standardrb linting --- lib/ice_cube/rule.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/ice_cube/rule.rb b/lib/ice_cube/rule.rb index 30689267..6c4c96ef 100644 --- a/lib/ice_cube/rule.rb +++ b/lib/ice_cube/rule.rb @@ -36,8 +36,8 @@ def self.from_ical(ical) end # Yaml implementation - def to_yaml(*args) - YAML.dump(to_hash, *args) + def to_yaml(*) + YAML.dump(to_hash, *) end # From yaml From fa0d92b57949ccc70efcf28bb4651cb96febe138 Mon Sep 17 00:00:00 2001 From: Jon Pascoe Date: Thu, 18 Jul 2024 22:33:32 +0000 Subject: [PATCH 4/4] Revert linting changes --- lib/ice_cube/rule.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/ice_cube/rule.rb b/lib/ice_cube/rule.rb index 6c4c96ef..30689267 100644 --- a/lib/ice_cube/rule.rb +++ b/lib/ice_cube/rule.rb @@ -36,8 +36,8 @@ def self.from_ical(ical) end # Yaml implementation - def to_yaml(*) - YAML.dump(to_hash, *) + def to_yaml(*args) + YAML.dump(to_hash, *args) end # From yaml