From e5939867634eaa70b677a08f4ffc8180eb50bf7f Mon Sep 17 00:00:00 2001 From: Rylan Polster Date: Mon, 29 Mar 2021 16:37:23 -0400 Subject: [PATCH] audit: allow all minor versions in new gnome version scheme --- Library/Homebrew/formula_auditor.rb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Library/Homebrew/formula_auditor.rb b/Library/Homebrew/formula_auditor.rb index 1b9e1405ad..d89819a5cb 100644 --- a/Library/Homebrew/formula_auditor.rb +++ b/Library/Homebrew/formula_auditor.rb @@ -549,6 +549,9 @@ module Homebrew version_prefix = stable.version.major_minor return if tap_audit_exception :gnome_devel_allowlist, formula.name, version_prefix return if stable_url_version < Version.create("1.0") + # All minor versions are stable in the new GNOME version scheme (which starts at version 40.0) + # https://discourse.gnome.org/t/new-gnome-versioning-scheme/4235 + return if stable_url_version >= Version.create("40.0") return if stable_url_minor_version.even? problem "#{stable.version} is a development release"