We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9da8ed commit 456e609Copy full SHA for 456e609
CHANGELOG.md
@@ -2,10 +2,6 @@
2
3
### 0.3.1
4
5
-Minor: renamed diff functions' parameters.
6
-
7
-### 0.3.0
8
9
Myers algorithm.
10
11
### 0.2.0
stringdiff/src/test/scala/app/tulz/diff/DiffTests.scala
@@ -24,7 +24,7 @@ class DiffTests extends AnyFunSuite with Matchers {
24
val dashes = 80
25
test(name) {
26
println(s"--- ${name} ${"-" * (dashes - name.length - 5)}")
27
- val result = TokenDiff.raw(s1.clean, s2.clean)
+ val result = TokenDiff.diff(s1.clean, s2.clean)
28
if (result != expectedDiff) {
29
println(s"| ${RED_B}${BLACK} ! failed ! ${RESET}")
30
}
version.sbt
@@ -1 +1 @@
1
-version in ThisBuild := "0.3.0"
+version in ThisBuild := "0.3.1"
0 commit comments