Skip to content

Commit

Permalink
Merge pull request #133 from orangain/bump-version-to-0.9.4
Browse files Browse the repository at this point in the history
Bump version to 0.9.4
  • Loading branch information
orangain authored Feb 9, 2025
2 parents 456c047 + c001b5f commit 9ba455b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/java_ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
fail-fast: false
matrix:
# See: https://adoptium.net/temurin/releases/
java: [ 8, 11, 17, 21 ]
java: [ 11, 17, 21 ]
# See: https://github.com/JetBrains/kotlin/releases
kotlin: [ v1.9.25, v2.0.21, v2.1.10 ]

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ repositories {
}

dependencies {
implementation("com.github.orangain.ktast:ast-psi:0.9.3")
implementation("com.github.orangain.ktast:ast-psi:0.9.4")
}
```

Expand All @@ -55,7 +55,7 @@ multiplatform projects. If you need the AST only, instead use:

```kts
dependencies {
implementation("com.github.orangain.ktast:ast:0.9.3")
implementation("com.github.orangain.ktast:ast:0.9.4")
}
```

Expand Down
4 changes: 2 additions & 2 deletions ast-psi/src/main/kotlin/ktast/ast/psi/Parser.kt
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
package ktast.ast.psi

import ktast.ast.Node
import org.jetbrains.kotlin.cli.common.CLIConfigurationKeys
import org.jetbrains.kotlin.cli.common.messages.MessageCollector
import org.jetbrains.kotlin.cli.jvm.compiler.EnvironmentConfigFiles
import org.jetbrains.kotlin.cli.jvm.compiler.KotlinCoreEnvironment
import org.jetbrains.kotlin.com.intellij.openapi.util.Disposer
import org.jetbrains.kotlin.com.intellij.psi.PsiErrorElement
import org.jetbrains.kotlin.com.intellij.psi.PsiManager
import org.jetbrains.kotlin.com.intellij.testFramework.LightVirtualFile
import org.jetbrains.kotlin.config.CommonConfigurationKeys
import org.jetbrains.kotlin.config.CompilerConfiguration
import org.jetbrains.kotlin.idea.KotlinFileType
import org.jetbrains.kotlin.psi.KtFile
Expand All @@ -29,7 +29,7 @@ open class Parser(protected val converter: Converter = ConverterWithExtras()) {
KotlinCoreEnvironment.createForProduction(
Disposer.newDisposable(),
CompilerConfiguration().apply {
put(CLIConfigurationKeys.MESSAGE_COLLECTOR_KEY, MessageCollector.NONE)
put(CommonConfigurationKeys.MESSAGE_COLLECTOR_KEY, MessageCollector.NONE)
},
EnvironmentConfigFiles.JVM_CONFIG_FILES
).project
Expand Down

0 comments on commit 9ba455b

Please sign in to comment.