Skip to content

Commit

Permalink
changelog update, test compilation fix
Browse files Browse the repository at this point in the history
  • Loading branch information
yurique committed Dec 24, 2020
1 parent c9da8ed commit 456e609
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 6 deletions.
4 changes: 0 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,6 @@

### 0.3.1

Minor: renamed diff functions' parameters.

### 0.3.0

Myers algorithm.

### 0.2.0
Expand Down
2 changes: 1 addition & 1 deletion stringdiff/src/test/scala/app/tulz/diff/DiffTests.scala
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class DiffTests extends AnyFunSuite with Matchers {
val dashes = 80
test(name) {
println(s"--- ${name} ${"-" * (dashes - name.length - 5)}")
val result = TokenDiff.raw(s1.clean, s2.clean)
val result = TokenDiff.diff(s1.clean, s2.clean)
if (result != expectedDiff) {
println(s"| ${RED_B}${BLACK} ! failed ! ${RESET}")
}
Expand Down
2 changes: 1 addition & 1 deletion version.sbt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version in ThisBuild := "0.3.0"
version in ThisBuild := "0.3.1"

0 comments on commit 456e609

Please sign in to comment.