From dea15e4afdb68321ffad2af48ae29b448029f661 Mon Sep 17 00:00:00 2001 From: ChrisRackauckas Date: Mon, 4 Aug 2025 08:59:55 -0400 Subject: [PATCH 1/2] [ci skip] Ignore crate-ci/typos patch and minor updates in dependabot This prevents dependabot from creating PRs for every minor and patch version update of the typos tool, reducing noise in the repository. --- .github/dependabot.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 700707c..ec3b005 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -5,3 +5,6 @@ updates: directory: "/" # Location of package manifests schedule: interval: "weekly" + ignore: + - dependency-name: "crate-ci/typos" + update-types: ["version-update:semver-patch", "version-update:semver-minor"] From 84fd84cb4f2c11b1d6c7a5302409031af94d4e8d Mon Sep 17 00:00:00 2001 From: ChrisRackauckas Date: Mon, 29 Dec 2025 14:47:50 -0500 Subject: [PATCH 2/2] Fix minimum Cassette version from 0.3.6 to 0.3.12 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The package requires Julia >= 1.10, and Cassette v0.3.12 is the first version compatible with Julia 1.10 (see Cassette release notes). The previous minimum version of 0.3.6 is incompatible with Julia 1.10+. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index e7f3b82..ec01b67 100644 --- a/Project.toml +++ b/Project.toml @@ -8,7 +8,7 @@ Cassette = "7057c7e9-c182-5462-911a-8362d720325c" DiffRules = "b552c78f-8df3-52c6-915a-8e097449b14b" [compat] -Cassette = "0.3.6" +Cassette = "0.3.12" DiffRules = "1.15" julia = "1.10"