summaryrefslogtreecommitdiff
path: root/lib/diff/lcs.rb
diff options
context:
space:
mode:
authorAustin Ziegler <austin@zieglers.ca>2020-06-28 14:59:37 -0400
committerAustin Ziegler <austin@zieglers.ca>2020-06-28 15:10:04 -0400
commit2a9a662142d0e62337f4e8c92abca41ebf42cf59 (patch)
tree6997f89789c2cf340bf6a63c01ae7c479ab2db77 /lib/diff/lcs.rb
parent20ea8f2a77b544c4aa8af1522102475ceeb9fff2 (diff)
downloaddiff-lcs-fix-ruby-1.8-support.tar.gz
Fix some issues with 1.4 on older Rubiesfix-ruby-1.8-support
- Required to fully support rspec. - Resolves #63.
Diffstat (limited to 'lib/diff/lcs.rb')
-rw-r--r--lib/diff/lcs.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/diff/lcs.rb b/lib/diff/lcs.rb
index 1fce946..9d47064 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.2'
+ VERSION = '1.4.3'
end
require 'diff/lcs/callbacks'