Skip to content

Commit de3d15c

Browse files
committed
Bump version to 1.3.11
1 parent bdba774 commit de3d15c

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@ All notable changes to the language server will be documented in this file.
33

44
Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.
55

6+
## [1.3.10]
7+
- Update LSP4J to 0.21.2
8+
- Increase maximum length in class path cache (#532)
9+
- Fix some bugs
10+
611
## [1.3.9]
712
- Improve source file exclusion logic
813

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
version=1.3.10
1+
version=1.3.11
22
javaVersion=11

shared/src/main/kotlin/org/javacs/kt/classpath/Home.kt

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,6 @@ private val possibleMavenRepositoryPaths =
1717
)
1818
.filterNotNull()
1919

20-
internal val mavenRepository =
21-
possibleMavenRepositoryPaths.firstOrNull { Files.exists(it) }
22-
?: throw KotlinLSException(
23-
"No repositories found at \$MAVEN_REPOSITORY, \$MAVEN_HOME, \$M2_HOME or \$HOME/.m2"
24-
)
20+
internal val mavenRepository = possibleMavenRepositoryPaths.firstOrNull { Files.exists(it) }
2521

2622
internal val gradleHome = createPathOrNull("GRADLE_USER_HOME") ?: userHome.resolve(".gradle")

0 commit comments

Comments
 (0)