Skip to content

Commit

Permalink
New server version with static fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
gchallen committed Feb 5, 2020
1 parent 2082496 commit 0b439e4
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 7 deletions.
2 changes: 1 addition & 1 deletion core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ plugins {
}

group = "com.github.cs125-illinois"
version = "2020.1.1"
version = "2020.2.0"

dependencies {
kapt("com.squareup.moshi:moshi-kotlin-codegen:1.9.2")
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version=2020.1.1
version=2020.2.0
6 changes: 3 additions & 3 deletions core/src/test/kotlin/TestCompile.kt
Original file line number Diff line number Diff line change
Expand Up @@ -390,9 +390,9 @@ fun haveCompilationErrorAt(source: String = SNIPPET_SOURCE, line: Int, column: I
override fun test(value: CompilationFailed): MatcherResult {
return MatcherResult(
value.errors.any {
it.location.source == source
&& it.location.line == line
&& (column == null || it.location.column == column)
it.location.source == source &&
it.location.line == line &&
(column == null || it.location.column == column)
},
"should have compilation error on line $line",
"should not have compilation error on line $line"
Expand Down
5 changes: 4 additions & 1 deletion server/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import java.io.StringWriter
import java.util.Properties

group = "edu.illinois.cs.cs125"
version = "2020.1.1"
version = "2020.2.0"

plugins {
kotlin("jvm")
Expand All @@ -13,6 +13,9 @@ plugins {
id("com.palantir.docker") version "0.24.0"
id("org.jmailen.kotlinter")
}
repositories {
maven(url = "https://maven.google.com/")
}
dependencies {
val ktorVersion = "1.3.0"

Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version=2020.1.1
version=2020.2.0

0 comments on commit 0b439e4

Please sign in to comment.