Skip to content

Commit 456e609

Browse files
committed
changelog update, test compilation fix
1 parent c9da8ed commit 456e609

File tree

3 files changed

+2
-6
lines changed

3 files changed

+2
-6
lines changed

CHANGELOG.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,6 @@
22

33
### 0.3.1
44

5-
Minor: renamed diff functions' parameters.
6-
7-
### 0.3.0
8-
95
Myers algorithm.
106

117
### 0.2.0

stringdiff/src/test/scala/app/tulz/diff/DiffTests.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class DiffTests extends AnyFunSuite with Matchers {
2424
val dashes = 80
2525
test(name) {
2626
println(s"--- ${name} ${"-" * (dashes - name.length - 5)}")
27-
val result = TokenDiff.raw(s1.clean, s2.clean)
27+
val result = TokenDiff.diff(s1.clean, s2.clean)
2828
if (result != expectedDiff) {
2929
println(s"| ${RED_B}${BLACK} ! failed ! ${RESET}")
3030
}

version.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version in ThisBuild := "0.3.0"
1+
version in ThisBuild := "0.3.1"

0 commit comments

Comments
 (0)