From 1a78d90b042a919d992d9e5ca6b52ec27a32b55d Mon Sep 17 00:00:00 2001 From: Ronald Tse Date: Mon, 20 Jul 2026 00:02:25 +0800 Subject: [PATCH] fix(release): revert version.rb to 0.2.5 so release workflow can bump MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The metanorma/ci rubygems-release workflow owns the version bump — it expects to be the one that writes the new version to lib/ea/version.rb and commits it. With the version already at 0.3.0 (committed in PR #21), the bump step is a no-op and git aborts with 'nothing to commit'. This revert returns the file to 0.2.5 so the release workflow can do its job. The actual 0.3.0 release content is already on main. --- lib/ea/version.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ea/version.rb b/lib/ea/version.rb index 633344c..777a0d9 100644 --- a/lib/ea/version.rb +++ b/lib/ea/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Ea - VERSION = "0.3.0" + VERSION = "0.2.5" end