Skip to content

Commit f8eccf8

Browse files
authored
Loosen thor constraint (v0.3.1) (#5)
1 parent e645616 commit f8eccf8

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88

99

10-
## [Unreleased]
10+
## [0.3.1] - 2020-07-08
1111

1212
### Added
1313

@@ -17,6 +17,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1717

1818
- Thor deprecation error no longer shows on CLI failure
1919

20+
### Changed
21+
22+
- Thor 0.20+ can now be used alongside this gem
23+
2024

2125

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

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ gemspec
77

88
gem 'minitest', '~> 5.0'
99
gem 'rake', '~> 13.0'
10-
gem 'rubocop', '~> 0.86'
10+
gem 'rubocop', '~> 0.86.0'

diffcrypt.gemspec

Lines changed: 1 addition & 1 deletion
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

lib/diffcrypt/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module Diffcrypt
4-
VERSION = '0.3.0'
4+
VERSION = '0.3.1'
55
end

0 commit comments

Comments
 (0)