diff options
author | Austin Ziegler <austin@zieglers.ca> | 2013-04-11 22:29:35 -0400 |
---|---|---|
committer | Austin Ziegler <austin@zieglers.ca> | 2013-04-11 22:29:35 -0400 |
commit | 12df45ec8edef0727b3cec2ff6f9ba0d6fff305f (patch) | |
tree | fe12df0a01b49be8a1861624372b9b9c178e22a9 /lib/diff | |
parent | 68e1a153d44a9e5a682144c2eb1a7800b5880480 (diff) | |
download | diff-lcs-12df45ec8edef0727b3cec2ff6f9ba0d6fff305f.tar.gz |
Creating release 1.2.3 with encoding fixes.v1.2.3
Diffstat (limited to 'lib/diff')
-rw-r--r-- | lib/diff/lcs.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/diff/lcs.rb b/lib/diff/lcs.rb index 620e200..33d9fc1 100644 --- a/lib/diff/lcs.rb +++ b/lib/diff/lcs.rb @@ -1,7 +1,7 @@ # -*- ruby encoding: utf-8 -*- module Diff; end unless defined? Diff -# = Diff::LCS 1.2.2 +# = Diff::LCS 1.2.3 # # Computes "intelligent" differences between two sequenced Enumerables. This # is an implementation of the McIlroy-Hunt "diff" algorithm for Enumerable @@ -129,7 +129,7 @@ module Diff; end unless defined? Diff # Common Subsequences</em>, CACM, vol.20, no.5, pp.350-353, May # 1977, with a few minor improvements to improve the speed." module Diff::LCS - VERSION = '1.2.2' + VERSION = '1.2.3' end require 'diff/lcs/callbacks' |