Prepare 0.27.1 release (#839)

This commit is contained in:
Philip K.F. Hölzenspies
2024-12-06 14:23:25 +00:00
committed by GitHub
parent 15d85b0660
commit 48a710f439
5 changed files with 7 additions and 7 deletions

View File

@@ -1,6 +1,6 @@
name: main
title: Main Project
version: 0.27.0
version: 0.27.1
prerelease: false
nav:
- nav.adoc

View File

@@ -3,7 +3,7 @@
// the following attributes must be updated immediately before a release
// pkl version corresponding to current git commit without -dev suffix or git hash
:pkl-version-no-suffix: 0.27.0
:pkl-version-no-suffix: 0.27.1
// tells whether pkl version corresponding to current git commit
// is a release version (:is-release-version: '') or dev version (:!is-release-version:)
:is-release-version: ''

View File

@@ -1,7 +1,7 @@
# suppress inspection "UnusedProperty" for whole file
group=org.pkl-lang
version=0.27.0
version=0.27.1
# google-java-format requires jdk.compiler exports
org.gradle.jvmargs= \

View File

@@ -2,15 +2,15 @@
"catalogs": {},
"aliases": {
"pkl": {
"script-ref": "org.pkl-lang:pkl-cli-java:0.27.0",
"script-ref": "org.pkl-lang:pkl-cli-java:0.27.1",
"java-agents": []
},
"pkl-codegen-java": {
"script-ref": "org.pkl-lang:pkl-codegen-java:0.27.0",
"script-ref": "org.pkl-lang:pkl-codegen-java:0.27.1",
"java-agents": []
},
"pkl-codegen-kotlin": {
"script-ref": "org.pkl-lang:pkl-codegen-kotlin:0.27.0",
"script-ref": "org.pkl-lang:pkl-codegen-kotlin:0.27.1",
"java-agents": []
}
},

View File

@@ -33,7 +33,7 @@ import org.pkl.core.util.Nullable;
@TruffleLanguage.Registration(
id = "pkl",
name = "Pkl",
version = "0.27.0",
version = "0.27.1",
characterMimeTypes = VmLanguage.MIME_TYPE,
contextPolicy = ContextPolicy.SHARED)
public final class VmLanguage extends TruffleLanguage<VmContext> {