From b002999aac71186f27f85fdd672380b04591413f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Thallis?= Date: Thu, 17 Sep 2026 01:52:18 -0300 Subject: [PATCH] Bump the README install snippet to 3.0.0-rc.4 The 3.0.0-rc.4 release bumped `@version` in mix.exs but left the README install example at `~> 3.0.0-rc.3`. The Hex publish workflow's version-match check fails on that mismatch, which is blocking the release from reaching Hex. Co-Authored-By: Claude Opus 4.8 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4c88ce4..c5bed4a 100644 --- a/README.md +++ b/README.md @@ -139,7 +139,7 @@ by adding `expression` to your list of dependencies in `mix.exs`: ```elixir def deps do [ - {:expression, "~> 3.0.0-rc.3"} + {:expression, "~> 3.0.0-rc.4"} ] end ```