Skip to content

Commit

Permalink
Bump dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
gchallen committed Feb 23, 2021
1 parent 7372fc8 commit b28492f
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ allprojects {
}
subprojects {
group = "com.github.cs125-illinois.jeed"
version = "2021.2.10"
version = "2021.2.11"
tasks.withType<KotlinCompile> {
val javaVersion = JavaVersion.VERSION_1_8.toString()
sourceCompatibility = javaVersion
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version=2021.2.10
version=2021.2.11
2 changes: 1 addition & 1 deletion core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ dependencies {
implementation("io.github.microutils:kotlin-logging:2.0.4")
implementation("io.github.classgraph:classgraph:4.8.102")
implementation("net.java.dev.jna:jna:5.7.0")
api("com.github.ben-manes.caffeine:caffeine:2.9.0")
api("com.github.ben-manes.caffeine:caffeine:3.0.0")

testImplementation("io.kotest:kotest-runner-junit5:4.4.1")
}
Expand Down
10 changes: 5 additions & 5 deletions core/src/main/kotlin/Snippet.kt
Original file line number Diff line number Diff line change
Expand Up @@ -315,11 +315,11 @@ ${" ".repeat(snippetArguments.indent * 2)}@JvmStatic fun main() {""".lines().let
}

val rewrittenSource = rewrittenSourceLines.map {
when {
it.isBlank() -> ""
else -> it
}
}. joinToString(separator = "\n")
when {
it.isBlank() -> ""
else -> it
}
}.joinToString(separator = "\n")
return Snippet(
Sources(hashMapOf(SNIPPET_SOURCE to rewrittenSource)),
originalSource,
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version=2021.2.10
version=2021.2.11
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.8.2-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-6.8.3-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version=2021.2.10
version=2021.2.11

0 comments on commit b28492f

Please sign in to comment.