Skip to content

Commit 57df799

Browse files
committed
Prepare 0.26.1 release
1 parent 6c97b09 commit 57df799

23 files changed

+23
-23
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.26.0
3+
version: 0.26.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.26.0
6+
:pkl-version-no-suffix: 0.26.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.26.0
4+
version=0.26.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.26.0",
36+
version = "0.26.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.26.0" }
39+
@ModuleInfo { minPklVersion = "0.26.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.26.0" }
66+
@ModuleInfo { minPklVersion = "0.26.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.26.0" }
34+
@ModuleInfo { minPklVersion = "0.26.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.26.0" }
18+
@ModuleInfo { minPklVersion = "0.26.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.26.0" }
67+
@ModuleInfo { minPklVersion = "0.26.1" }
6868
module pkl.Project
6969

7070
import "pkl:EvaluatorSettings" as EvaluatorSettingsModule

stdlib/base.pkl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
/// Fundamental properties, methods, and classes for writing Pkl programs.
1818
///
1919
/// Members of this module are automatically available in every Pkl module.
20-
@ModuleInfo { minPklVersion = "0.26.0" }
20+
@ModuleInfo { minPklVersion = "0.26.1" }
2121
module pkl.base
2222

2323
import "pkl:jsonnet"

stdlib/json.pkl

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

1717
/// A JSON parser.
18-
@ModuleInfo { minPklVersion = "0.26.0" }
18+
@ModuleInfo { minPklVersion = "0.26.1" }
1919
module pkl.json
2020

2121
/// A JSON parser.

stdlib/jsonnet.pkl

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

1717
/// A [Jsonnet](https://jsonnet.org) renderer.
18-
@ModuleInfo { minPklVersion = "0.26.0" }
18+
@ModuleInfo { minPklVersion = "0.26.1" }
1919
module pkl.jsonnet
2020

2121
/// Constructs an [ImportStr].

stdlib/math.pkl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
///
1919
/// Note that some mathematical functions, such as `sign()`, `abs()`, and `round()`,
2020
/// are directly defined in classes [Number], [Int], and [Float].
21-
@ModuleInfo { minPklVersion = "0.26.0" }
21+
@ModuleInfo { minPklVersion = "0.26.1" }
2222
module pkl.math
2323

2424
/// The minimum [Int] value: `-9223372036854775808`.

stdlib/platform.pkl

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

1717
/// Information about the platform that the current program runs on.
18-
@ModuleInfo { minPklVersion = "0.26.0" }
18+
@ModuleInfo { minPklVersion = "0.26.1" }
1919
module pkl.platform
2020

2121
/// The platform that the current program runs on.

stdlib/protobuf.pkl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
/// A renderer for [Protocol Buffers](https://developers.google.com/protocol-buffers).
1818
/// Note: This module is _experimental_ and not ready for production use.
19-
@ModuleInfo { minPklVersion = "0.26.0" }
19+
@ModuleInfo { minPklVersion = "0.26.1" }
2020
module pkl.protobuf
2121

2222
import "pkl:reflect"

stdlib/reflect.pkl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
/// - Documentation generators (such as *Pkldoc*)
2727
/// - Code generators (such as *pkl-codegen-java* and *pkl-codegen-kotlin*)
2828
/// - Domain-specific schema validators
29-
@ModuleInfo { minPklVersion = "0.26.0" }
29+
@ModuleInfo { minPklVersion = "0.26.1" }
3030
module pkl.reflect
3131

3232
import "pkl:base"

stdlib/release.pkl

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

1717
/// Information about the Pkl release that the current program runs on.
18-
@ModuleInfo { minPklVersion = "0.26.0" }
18+
@ModuleInfo { minPklVersion = "0.26.1" }
1919
module pkl.release
2020

2121
import "pkl:semver"

stdlib/semver.pkl

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

1717
/// Parsing, comparison, and manipulation of [semantic version](https://semver.org/spec/v2.0.0.html) numbers.
18-
@ModuleInfo { minPklVersion = "0.26.0" }
18+
@ModuleInfo { minPklVersion = "0.26.1" }
1919
module pkl.semver
2020

2121
/// Tells whether [version] is a valid semantic version number.

stdlib/settings.pkl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
/// Every settings file must amend this module.
2020
/// Unless CLI commands and build tool plugins are explicitly configured with a settings file,
2121
/// they will use `~/.pkl/settings.pkl` or the defaults specified in this module.
22-
@ModuleInfo { minPklVersion = "0.26.0" }
22+
@ModuleInfo { minPklVersion = "0.26.1" }
2323
module pkl.settings
2424

2525
import "pkl:EvaluatorSettings"

stdlib/shell.pkl

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

1717
/// Utilities for generating shell scripts.
18-
@ModuleInfo { minPklVersion = "0.26.0" }
18+
@ModuleInfo { minPklVersion = "0.26.1" }
1919
module pkl.shell
2020

2121
/// Escapes [str] by enclosing it in single quotes.

stdlib/test.pkl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
///
1919
/// To write tests, amend this module and define [facts] or [examples] (or both).
2020
/// To run tests, evaluate the amended module.
21-
@ModuleInfo { minPklVersion = "0.26.0" }
21+
@ModuleInfo { minPklVersion = "0.26.1" }
2222
open module pkl.test
2323

2424
/// Named groups of boolean expressions that are expected to evaluate to [true].

stdlib/xml.pkl

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

1717
/// An XML renderer.
18-
@ModuleInfo { minPklVersion = "0.26.0" }
18+
@ModuleInfo { minPklVersion = "0.26.1" }
1919
module pkl.xml
2020

2121
/// Renders values as XML.

stdlib/yaml.pkl

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

1717
/// A YAML 1.2 compliant YAML parser.
18-
@ModuleInfo { minPklVersion = "0.26.0" }
18+
@ModuleInfo { minPklVersion = "0.26.1" }
1919
module pkl.yaml
2020

2121
/// A YAML parser.

0 commit comments

Comments
 (0)