diff options
author | Austin Ziegler <austin@zieglers.ca> | 2020-06-23 11:53:16 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-23 11:53:16 -0400 |
commit | cef2f827c7d93cfcddc1ea64dfaab8c7ed784d41 (patch) | |
tree | 2494ca80640a39094314dc2a8212eef727d196b9 /lib/diff/lcs.rb | |
parent | 4168a8eb56231152697290d14ac62a02eac9ac3f (diff) | |
parent | 4ccda50478a0b68f8ed1aebd310c207e0245466b (diff) | |
download | diff-lcs-cef2f827c7d93cfcddc1ea64dfaab8c7ed784d41.tar.gz |
Merge pull request #58 from halostatue/fix-issue-57v1.4.1
Fix an issue with negative hunk max_size
Diffstat (limited to 'lib/diff/lcs.rb')
-rw-r--r-- | lib/diff/lcs.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/diff/lcs.rb b/lib/diff/lcs.rb index c4d1cc8..b6d0a86 100644 --- a/lib/diff/lcs.rb +++ b/lib/diff/lcs.rb @@ -49,7 +49,7 @@ module Diff; end unless defined? Diff # rubocop:disable Style/Documentation # a x b y c z p d q # a b c a x b y c z module Diff::LCS - VERSION = '1.4' + VERSION = '1.4.1' end require 'diff/lcs/callbacks' |