Skip to content

Commit

Permalink
Bump version to 1.3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
fwcd committed Jul 28, 2024
1 parent bdba774 commit de3d15c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ All notable changes to the language server will be documented in this file.

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

## [1.3.10]
- Update LSP4J to 0.21.2
- Increase maximum length in class path cache (#532)
- Fix some bugs

## [1.3.9]
- Improve source file exclusion logic

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version=1.3.10
version=1.3.11
javaVersion=11
6 changes: 1 addition & 5 deletions shared/src/main/kotlin/org/javacs/kt/classpath/Home.kt
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,6 @@ private val possibleMavenRepositoryPaths =
)
.filterNotNull()

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

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

0 comments on commit de3d15c

Please sign in to comment.