Skip to content

Commit 6a3722a

Browse files
committed
Prepare 0.29.1 release
1 parent 2a71951 commit 6a3722a

24 files changed

+24
-24
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.29.0
3+
version: 0.29.1
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.29.0
6+
:pkl-version-no-suffix: 0.29.1
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.29.0
4+
version=0.29.1
55

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

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.29.0",
36+
version = "0.29.1",
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.29.0" }
39+
@ModuleInfo { minPklVersion = "0.29.1" }
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.29.0" }
66+
@ModuleInfo { minPklVersion = "0.29.1" }
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.29.0" }
34+
@ModuleInfo { minPklVersion = "0.29.1" }
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.29.0" }
18+
@ModuleInfo { minPklVersion = "0.29.1" }
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.29.0" }
67+
@ModuleInfo { minPklVersion = "0.29.1" }
6868
module pkl.Project
6969

7070
import "pkl:EvaluatorSettings" as EvaluatorSettingsModule

stdlib/analyze.pkl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
/// These tools differentiate from [pkl:reflect][reflect] in that they parse Pkl modules, but do not
2020
/// execute any code within these modules.
2121
@Since { version = "0.27.0" }
22-
@ModuleInfo { minPklVersion = "0.29.0" }
22+
@ModuleInfo { minPklVersion = "0.29.1" }
2323
module pkl.analyze
2424

2525
// used by doc comments

0 commit comments

Comments
 (0)