2 Commits

Author SHA1 Message Date
Islon Scherer
842c46e358 remove folders from build executable dir 2025-02-26 17:52:27 +01:00
Islon Scherer
52c2b29a04 change version to 0.28.0 2025-02-26 17:09:14 +01:00
6 changed files with 11 additions and 7 deletions

View File

@@ -148,6 +148,8 @@ jobs {
command = #"""
# exclude build_artifacts.txt from publish
rm -f pkl-cli/build/executable/*.build_artifacts.txt
find pkl-cli/build/executable/* -type d | xargs rm -rf
rm -f pkl-cli/build/executable/resources
gh release create "${CIRCLE_TAG}" \
--title "${CIRCLE_TAG}" \
--target "${CIRCLE_SHA1}" \

View File

@@ -735,6 +735,8 @@ jobs:
command: |-
# exclude build_artifacts.txt from publish
rm -f pkl-cli/build/executable/*.build_artifacts.txt
find pkl-cli/build/executable/* -type d | xargs rm -rf
rm -f pkl-cli/build/executable/resources
gh release create "${CIRCLE_TAG}" \
--title "${CIRCLE_TAG}" \
--target "${CIRCLE_SHA1}" \

View File

@@ -1,6 +1,6 @@
name: main
title: Main Project
version: 0.28.0-dev
prerelease: true
version: 0.28.0
prerelease: false
nav:
- nav.adoc

View File

@@ -6,7 +6,7 @@
:pkl-version-no-suffix: 0.28.0
// 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:
:is-release-version: ''
// the remaining attributes do not need to be updated regularly

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.28.0",
"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.28.0",
"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.28.0",
"java-agents": []
}
},

View File

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