Skip to content

Commit 8bd738e

Browse files
committed
Prepare 0.28.2 release
1 parent 7569b96 commit 8bd738e

25 files changed

+27
-27
lines changed

docs/antora.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: main
22
title: Main Project
3-
version: 0.28.1
3+
version: 0.28.2
44
prerelease: false
55
nav:
66
- nav.adoc

docs/modules/ROOT/partials/component-attributes.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// the following attributes must be updated immediately before a release
44

55
// pkl version corresponding to current git commit without -dev suffix or git hash
6-
:pkl-version-no-suffix: 0.28.1
6+
:pkl-version-no-suffix: 0.28.2
77
// tells whether pkl version corresponding to current git commit
88
// is a release version (:is-release-version: '') or dev version (:!is-release-version:)
99
:is-release-version: ''

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# suppress inspection "UnusedProperty" for whole file
22

33
group=org.pkl-lang
4-
version=0.28.1
4+
version=0.28.2
55

66
# google-java-format requires jdk.compiler exports
77
org.gradle.jvmargs= \

jbang-catalog.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
"catalogs": {},
33
"aliases": {
44
"pkl": {
5-
"script-ref": "org.pkl-lang:pkl-cli-java:0.28.1",
5+
"script-ref": "org.pkl-lang:pkl-cli-java:0.28.2",
66
"java-agents": []
77
},
88
"pkl-codegen-java": {
9-
"script-ref": "org.pkl-lang:pkl-codegen-java:0.28.1",
9+
"script-ref": "org.pkl-lang:pkl-codegen-java:0.28.2",
1010
"java-agents": []
1111
},
1212
"pkl-codegen-kotlin": {
13-
"script-ref": "org.pkl-lang:pkl-codegen-kotlin:0.28.1",
13+
"script-ref": "org.pkl-lang:pkl-codegen-kotlin:0.28.2",
1414
"java-agents": []
1515
}
1616
},

pkl-core/src/main/java/org/pkl/core/runtime/VmLanguage.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
@TruffleLanguage.Registration(
3434
id = "pkl",
3535
name = "Pkl",
36-
version = "0.28.1",
36+
version = "0.28.2",
3737
characterMimeTypes = VmLanguage.MIME_TYPE,
3838
contextPolicy = ContextPolicy.SHARED)
3939
public final class VmLanguage extends TruffleLanguage<VmContext> {

stdlib/Benchmark.pkl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
///
3737
/// Warning: Although this module is ready for initial use,
3838
/// benchmark results may be inaccurate or inconsistent.
39-
@ModuleInfo { minPklVersion = "0.28.1" }
39+
@ModuleInfo { minPklVersion = "0.28.2" }
4040
module pkl.Benchmark
4141

4242
import "pkl:platform" as _platform

stdlib/DocPackageInfo.pkl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
/// @Deprecated { message = "Use `com.example.Birds.Parrot` instead" }
6464
/// amends "pkl:PackageInfo"
6565
/// ```
66-
@ModuleInfo { minPklVersion = "0.28.1" }
66+
@ModuleInfo { minPklVersion = "0.28.2" }
6767
module pkl.DocPackageInfo
6868

6969
import "pkl:reflect"

stdlib/DocsiteInfo.pkl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
///
3232
/// title = "Title displayed in the header of each page"
3333
/// ```
34-
@ModuleInfo { minPklVersion = "0.28.1" }
34+
@ModuleInfo { minPklVersion = "0.28.2" }
3535
module pkl.DocsiteInfo
3636

3737
import "pkl:reflect"

stdlib/EvaluatorSettings.pkl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
//===----------------------------------------------------------------------===//
1616

1717
/// Common settings for Pkl's own evaluator.
18-
@ModuleInfo { minPklVersion = "0.28.1" }
18+
@ModuleInfo { minPklVersion = "0.28.2" }
1919
@Since { version = "0.26.0" }
2020
module pkl.EvaluatorSettings
2121

stdlib/Project.pkl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
/// value = project
6565
/// }
6666
/// ```
67-
@ModuleInfo { minPklVersion = "0.28.1" }
67+
@ModuleInfo { minPklVersion = "0.28.2" }
6868
module pkl.Project
6969

7070
import "pkl:EvaluatorSettings" as EvaluatorSettingsModule

0 commit comments

Comments
 (0)