diff options
author | Austin Ziegler <austin@zieglers.ca> | 2020-06-23 22:15:28 -0400 |
---|---|---|
committer | Austin Ziegler <austin@zieglers.ca> | 2020-06-23 22:15:28 -0400 |
commit | 9aabe2f63fcb1d15c80e26e00ddea12189dc9547 (patch) | |
tree | be5f7ba9fe54a3453eb20df62f60b8c4912c4589 /lib/diff/lcs.rb | |
parent | cef2f827c7d93cfcddc1ea64dfaab8c7ed784d41 (diff) | |
download | diff-lcs-9aabe2f63fcb1d15c80e26e00ddea12189dc9547.tar.gz |
Change when max_diff_size is applied
- This appears to satisfy the issues found in #60 as well as providing the
additional fixes required to properly test ldiff.
Resolves #60
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 b6d0a86..1fce946 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.1' + VERSION = '1.4.2' end require 'diff/lcs/callbacks' |