We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 22b81b0 commit 68eefc9Copy full SHA for 68eefc9
CHANGELOG.md
@@ -1,5 +1,9 @@
1
## [Unreleased]
2
3
+## [1.21.2] - 2026-03-11
4
+
5
+- Fix duplicate Rake tasks (#238).
6
7
## [1.21.1] - 2026-02-27
8
9
- Improve styling for the `skills` CLI (#223).
lib/rage/tasks.rb
@@ -28,6 +28,12 @@ def configuration_file
28
end
29
end)
30
31
+ begin
32
+ StandaloneMigrations::MinimalRailtieConfig.paths["lib/tasks"] = []
33
+ rescue => e
34
+ warn("WARNING: Failed to disable StandaloneMigrations task auto-loading (#{e.class}: #{e.message})")
35
+ end
36
37
StandaloneMigrations::Tasks.load_tasks
38
39
lib/rage/version.rb
@@ -1,5 +1,5 @@
# frozen_string_literal: true
module Rage
- VERSION = "1.21.1"
+ VERSION = "1.21.2"
0 commit comments