summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorAustin Ziegler <austin@zieglers.ca>2014-04-26 17:18:26 -0400
committerAustin Ziegler <austin@zieglers.ca>2014-04-26 17:20:36 -0400
commitfb9becfdd73d16ca0e3e43df78102669228b785c (patch)
treeee3fcd59f16712dd838fb4a7f03721c23e67209d /lib
parent6029fb7798438b0e43284368c6b4b205083fc4bf (diff)
downloaddiff-lcs-fb9becfdd73d16ca0e3e43df78102669228b785c.tar.gz
Bumping version in preparation for next release.
Diffstat (limited to 'lib')
-rw-r--r--lib/diff/lcs.rb4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/diff/lcs.rb b/lib/diff/lcs.rb
index 5559615..b51c1bc 100644
--- a/lib/diff/lcs.rb
+++ b/lib/diff/lcs.rb
@@ -1,8 +1,6 @@
# -*- ruby encoding: utf-8 -*-
module Diff; end unless defined? Diff
-# = Diff::LCS 1.2.5
-#
# Computes "intelligent" differences between two sequenced Enumerables. This
# is an implementation of the McIlroy-Hunt "diff" algorithm for Enumerable
# objects that include Diffable.
@@ -129,7 +127,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.5'
+ VERSION = '1.3'
end
require 'diff/lcs/callbacks'