summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorAustin Ziegler <austin.ziegler@clearfit.com>2013-11-07 15:50:00 -0500
committerAustin Ziegler <austin.ziegler@clearfit.com>2013-11-07 15:50:16 -0500
commit704bc2c0000b5f9bf49d607dcd0d3989b63b2595 (patch)
tree11025740ba349fac80e4207a656aa49639cbc274 /lib
parent9479a43bc701f07a78dedcc6e9c34e2cdaad2cc4 (diff)
downloaddiff-lcs-704bc2c0000b5f9bf49d607dcd0d3989b63b2595.tar.gz
Release 1.25: Bugfix for pull request #23.
Diffstat (limited to 'lib')
-rw-r--r--lib/diff/lcs.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/diff/lcs.rb b/lib/diff/lcs.rb
index fcc5cc5..5559615 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.4
+# = Diff::LCS 1.2.5
#
# 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.4'
+ VERSION = '1.2.5'
end
require 'diff/lcs/callbacks'