Skip to content

Commit 51054e4

Browse files
committed
Allow thor 0.20+
Some projects are locked to 0.20.x due to other dependencies. This allows diffcrypt to be used
1 parent 2bbdc74 commit 51054e4

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1313

1414
- Thor deprecation error no longer shows on CLI failure
1515

16+
### Changed
17+
18+
- Thor 0.20+ can now be used alongside this gem
19+
1620

1721

1822
## [0.3.0] - 2020-06-30

diffcrypt.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,5 @@ Gem::Specification.new do |spec|
3030
spec.require_paths = ['lib']
3131

3232
spec.add_runtime_dependency 'activesupport', '~> 6.0.0'
33-
spec.add_runtime_dependency 'thor', '~> 1.0.1'
33+
spec.add_runtime_dependency 'thor', '>= 0.20', '< 2'
3434
end

0 commit comments

Comments
 (0)