diff --git a/docs/antora.yml b/docs/antora.yml index 14a45d5b..627fda36 100644 --- a/docs/antora.yml +++ b/docs/antora.yml @@ -1,6 +1,6 @@ name: main title: Main Project -version: 0.30.0 +version: 0.30.1 prerelease: false nav: - nav.adoc diff --git a/docs/modules/ROOT/partials/component-attributes.adoc b/docs/modules/ROOT/partials/component-attributes.adoc index 941ff8f3..1f48635e 100644 --- a/docs/modules/ROOT/partials/component-attributes.adoc +++ b/docs/modules/ROOT/partials/component-attributes.adoc @@ -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.30.0 +:pkl-version-no-suffix: 0.30.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: '' diff --git a/gradle.properties b/gradle.properties index 5613a632..8feee01f 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,7 +1,7 @@ # suppress inspection "UnusedProperty" for whole file group=org.pkl-lang -version=0.30.0 +version=0.30.1 # google-java-format requires jdk.compiler exports org.gradle.jvmargs= \ diff --git a/pkl-core/src/main/java/org/pkl/core/runtime/VmLanguage.java b/pkl-core/src/main/java/org/pkl/core/runtime/VmLanguage.java index aee14104..5f9836e6 100644 --- a/pkl-core/src/main/java/org/pkl/core/runtime/VmLanguage.java +++ b/pkl-core/src/main/java/org/pkl/core/runtime/VmLanguage.java @@ -33,7 +33,7 @@ import org.pkl.parser.syntax.Module; @TruffleLanguage.Registration( id = "pkl", name = "Pkl", - version = "0.30.0", + version = "0.30.1", characterMimeTypes = VmLanguage.MIME_TYPE, contextPolicy = ContextPolicy.SHARED) public final class VmLanguage extends TruffleLanguage { diff --git a/stdlib/Benchmark.pkl b/stdlib/Benchmark.pkl index 77426480..1f1eed14 100644 --- a/stdlib/Benchmark.pkl +++ b/stdlib/Benchmark.pkl @@ -36,7 +36,7 @@ /// /// Warning: Although this module is ready for initial use, /// benchmark results may be inaccurate or inconsistent. -@ModuleInfo { minPklVersion = "0.30.0" } +@ModuleInfo { minPklVersion = "0.30.1" } module pkl.Benchmark import "pkl:platform" as _platform diff --git a/stdlib/DocPackageInfo.pkl b/stdlib/DocPackageInfo.pkl index 42b2dd69..cb502276 100644 --- a/stdlib/DocPackageInfo.pkl +++ b/stdlib/DocPackageInfo.pkl @@ -63,7 +63,7 @@ /// @Deprecated { message = "Use `com.example.Birds.Parrot` instead" } /// amends "pkl:PackageInfo" /// ``` -@ModuleInfo { minPklVersion = "0.30.0" } +@ModuleInfo { minPklVersion = "0.30.1" } module pkl.DocPackageInfo // used by doc comments diff --git a/stdlib/DocsiteInfo.pkl b/stdlib/DocsiteInfo.pkl index 07e989c8..8b46b4e3 100644 --- a/stdlib/DocsiteInfo.pkl +++ b/stdlib/DocsiteInfo.pkl @@ -31,7 +31,7 @@ /// /// title = "Title displayed in the header of each page" /// ``` -@ModuleInfo { minPklVersion = "0.30.0" } +@ModuleInfo { minPklVersion = "0.30.1" } module pkl.DocsiteInfo import "pkl:reflect" diff --git a/stdlib/EvaluatorSettings.pkl b/stdlib/EvaluatorSettings.pkl index a0719336..e6c3702a 100644 --- a/stdlib/EvaluatorSettings.pkl +++ b/stdlib/EvaluatorSettings.pkl @@ -15,7 +15,7 @@ //===----------------------------------------------------------------------===// /// Common settings for Pkl's own evaluator. -@ModuleInfo { minPklVersion = "0.30.0" } +@ModuleInfo { minPklVersion = "0.30.1" } @Since { version = "0.26.0" } module pkl.EvaluatorSettings diff --git a/stdlib/Project.pkl b/stdlib/Project.pkl index 93f1f7e2..993120d4 100644 --- a/stdlib/Project.pkl +++ b/stdlib/Project.pkl @@ -64,7 +64,7 @@ /// value = project /// } /// ``` -@ModuleInfo { minPklVersion = "0.30.0" } +@ModuleInfo { minPklVersion = "0.30.1" } module pkl.Project import "pkl:EvaluatorSettings" as EvaluatorSettingsModule diff --git a/stdlib/analyze.pkl b/stdlib/analyze.pkl index 465b1637..f2839046 100644 --- a/stdlib/analyze.pkl +++ b/stdlib/analyze.pkl @@ -19,7 +19,7 @@ /// These tools differentiate from [pkl:reflect][reflect] in that they parse Pkl modules, but do not /// execute any code within these modules. @Since { version = "0.27.0" } -@ModuleInfo { minPklVersion = "0.30.0" } +@ModuleInfo { minPklVersion = "0.30.1" } module pkl.analyze // used by doc comments diff --git a/stdlib/base.pkl b/stdlib/base.pkl index b15b4c0f..6ac4b19c 100644 --- a/stdlib/base.pkl +++ b/stdlib/base.pkl @@ -17,7 +17,7 @@ /// Fundamental properties, methods, and classes for writing Pkl programs. /// /// Members of this module are automatically available in every Pkl module. -@ModuleInfo { minPklVersion = "0.30.0" } +@ModuleInfo { minPklVersion = "0.30.1" } module pkl.base import "pkl:jsonnet" diff --git a/stdlib/json.pkl b/stdlib/json.pkl index 054d7d49..9433452c 100644 --- a/stdlib/json.pkl +++ b/stdlib/json.pkl @@ -15,7 +15,7 @@ //===----------------------------------------------------------------------===// /// A JSON parser. -@ModuleInfo { minPklVersion = "0.30.0" } +@ModuleInfo { minPklVersion = "0.30.1" } module pkl.json /// A JSON parser. diff --git a/stdlib/jsonnet.pkl b/stdlib/jsonnet.pkl index bb15a223..ad1f456b 100644 --- a/stdlib/jsonnet.pkl +++ b/stdlib/jsonnet.pkl @@ -15,7 +15,7 @@ //===----------------------------------------------------------------------===// /// A [Jsonnet](https://jsonnet.org) renderer. -@ModuleInfo { minPklVersion = "0.30.0" } +@ModuleInfo { minPklVersion = "0.30.1" } module pkl.jsonnet /// Constructs an [ImportStr]. diff --git a/stdlib/math.pkl b/stdlib/math.pkl index bbbf000f..3fd99f7b 100644 --- a/stdlib/math.pkl +++ b/stdlib/math.pkl @@ -18,7 +18,7 @@ /// /// Note that some mathematical functions, such as `sign()`, `abs()`, and `round()`, /// are directly defined in classes [Number], [Int], and [Float]. -@ModuleInfo { minPklVersion = "0.30.0" } +@ModuleInfo { minPklVersion = "0.30.1" } module pkl.math /// The minimum [Int] value: `-9223372036854775808`. diff --git a/stdlib/pklbinary.pkl b/stdlib/pklbinary.pkl index 606a8249..481eac62 100644 --- a/stdlib/pklbinary.pkl +++ b/stdlib/pklbinary.pkl @@ -28,7 +28,7 @@ /// The `pkl-binary` format uses MessagePack encoding. /// Its specification is available at /// . -@ModuleInfo { minPklVersion = "0.30.0" } +@ModuleInfo { minPklVersion = "0.30.1" } module pkl.pklbinary /// Render values as `pkl-binary`. diff --git a/stdlib/platform.pkl b/stdlib/platform.pkl index 66967c5c..931f7a3d 100644 --- a/stdlib/platform.pkl +++ b/stdlib/platform.pkl @@ -15,7 +15,7 @@ //===----------------------------------------------------------------------===// /// Information about the platform that the current program runs on. -@ModuleInfo { minPklVersion = "0.30.0" } +@ModuleInfo { minPklVersion = "0.30.1" } module pkl.platform /// The platform that the current program runs on. diff --git a/stdlib/protobuf.pkl b/stdlib/protobuf.pkl index 0f8d1000..faec73dc 100644 --- a/stdlib/protobuf.pkl +++ b/stdlib/protobuf.pkl @@ -16,7 +16,7 @@ /// A renderer for [Protocol Buffers](https://developers.google.com/protocol-buffers). /// Note: This module is _experimental_ and not ready for production use. -@ModuleInfo { minPklVersion = "0.30.0" } +@ModuleInfo { minPklVersion = "0.30.1" } module pkl.protobuf import "pkl:reflect" diff --git a/stdlib/reflect.pkl b/stdlib/reflect.pkl index 1267a6fa..97318410 100644 --- a/stdlib/reflect.pkl +++ b/stdlib/reflect.pkl @@ -26,7 +26,7 @@ /// - Documentation generators (such as *Pkldoc*) /// - Code generators (such as *pkl-codegen-java* and *pkl-codegen-kotlin*) /// - Domain-specific schema validators -@ModuleInfo { minPklVersion = "0.30.0" } +@ModuleInfo { minPklVersion = "0.30.1" } module pkl.reflect import "pkl:base" diff --git a/stdlib/release.pkl b/stdlib/release.pkl index 2ef35f4f..8409fb5d 100644 --- a/stdlib/release.pkl +++ b/stdlib/release.pkl @@ -15,7 +15,7 @@ //===----------------------------------------------------------------------===// /// Information about the Pkl release that the current program runs on. -@ModuleInfo { minPklVersion = "0.30.0" } +@ModuleInfo { minPklVersion = "0.30.1" } module pkl.release import "pkl:semver" diff --git a/stdlib/semver.pkl b/stdlib/semver.pkl index ab281083..a244c651 100644 --- a/stdlib/semver.pkl +++ b/stdlib/semver.pkl @@ -15,7 +15,7 @@ //===----------------------------------------------------------------------===// /// Parsing, comparison, and manipulation of [semantic version](https://semver.org/spec/v2.0.0.html) numbers. -@ModuleInfo { minPklVersion = "0.30.0" } +@ModuleInfo { minPklVersion = "0.30.1" } module pkl.semver /// Tells whether [version] is a valid semantic version number. diff --git a/stdlib/settings.pkl b/stdlib/settings.pkl index 4fa88cb9..9a894538 100644 --- a/stdlib/settings.pkl +++ b/stdlib/settings.pkl @@ -19,7 +19,7 @@ /// Every settings file must amend this module. /// Unless CLI commands and build tool plugins are explicitly configured with a settings file, /// they will use `~/.pkl/settings.pkl` or the defaults specified in this module. -@ModuleInfo { minPklVersion = "0.30.0" } +@ModuleInfo { minPklVersion = "0.30.1" } module pkl.settings import "pkl:EvaluatorSettings" diff --git a/stdlib/shell.pkl b/stdlib/shell.pkl index 3a71c264..0be0f819 100644 --- a/stdlib/shell.pkl +++ b/stdlib/shell.pkl @@ -15,7 +15,7 @@ //===----------------------------------------------------------------------===// /// Utilities for generating shell scripts. -@ModuleInfo { minPklVersion = "0.30.0" } +@ModuleInfo { minPklVersion = "0.30.1" } module pkl.shell /// Escapes [str] by enclosing it in single quotes. diff --git a/stdlib/test.pkl b/stdlib/test.pkl index 5ec91d8b..279522c5 100644 --- a/stdlib/test.pkl +++ b/stdlib/test.pkl @@ -18,7 +18,7 @@ /// /// To write tests, amend this module and define [facts] or [examples] (or both). /// To run tests, evaluate the amended module. -@ModuleInfo { minPklVersion = "0.30.0" } +@ModuleInfo { minPklVersion = "0.30.1" } open module pkl.test /// Named groups of boolean expressions that are expected to evaluate to [true]. diff --git a/stdlib/xml.pkl b/stdlib/xml.pkl index 3e335e4e..0e34cb10 100644 --- a/stdlib/xml.pkl +++ b/stdlib/xml.pkl @@ -15,7 +15,7 @@ //===----------------------------------------------------------------------===// /// An XML renderer. -@ModuleInfo { minPklVersion = "0.30.0" } +@ModuleInfo { minPklVersion = "0.30.1" } module pkl.xml /// Renders values as XML. diff --git a/stdlib/yaml.pkl b/stdlib/yaml.pkl index 3f7b7bef..60476967 100644 --- a/stdlib/yaml.pkl +++ b/stdlib/yaml.pkl @@ -15,7 +15,7 @@ //===----------------------------------------------------------------------===// /// A YAML 1.2 compliant YAML parser. -@ModuleInfo { minPklVersion = "0.30.0" } +@ModuleInfo { minPklVersion = "0.30.1" } module pkl.yaml /// A YAML parser.