From 91820100f7f5355bba06adc5b16da8bb9b2462ad Mon Sep 17 00:00:00 2001 From: Dan Chao Date: Tue, 26 Mar 2024 08:46:40 -0700 Subject: [PATCH] Prepare 0.25.3 release --- docs/antora.yml | 2 +- docs/modules/ROOT/partials/component-attributes.adoc | 2 +- docs/modules/release-notes/pages/0.25.adoc | 2 +- gradle.properties | 2 +- pkl-core/src/main/java/org/pkl/core/runtime/VmLanguage.java | 2 +- stdlib/Benchmark.pkl | 2 +- stdlib/DocPackageInfo.pkl | 2 +- stdlib/DocsiteInfo.pkl | 2 +- stdlib/Project.pkl | 2 +- stdlib/base.pkl | 2 +- stdlib/json.pkl | 2 +- stdlib/jsonnet.pkl | 2 +- stdlib/math.pkl | 2 +- stdlib/platform.pkl | 2 +- stdlib/protobuf.pkl | 2 +- stdlib/reflect.pkl | 2 +- stdlib/release.pkl | 2 +- stdlib/semver.pkl | 2 +- stdlib/settings.pkl | 2 +- stdlib/shell.pkl | 2 +- stdlib/test.pkl | 2 +- stdlib/xml.pkl | 2 +- stdlib/yaml.pkl | 2 +- 23 files changed, 23 insertions(+), 23 deletions(-) diff --git a/docs/antora.yml b/docs/antora.yml index ed6d1cb50..1c20da6b5 100644 --- a/docs/antora.yml +++ b/docs/antora.yml @@ -1,6 +1,6 @@ name: main title: Main Project -version: 0.25.2 +version: 0.25.3 prerelease: false nav: - nav.adoc diff --git a/docs/modules/ROOT/partials/component-attributes.adoc b/docs/modules/ROOT/partials/component-attributes.adoc index a30a4ba06..a10d2d1ba 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.25.2 +:pkl-version-no-suffix: 0.25.3 // 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/docs/modules/release-notes/pages/0.25.adoc b/docs/modules/release-notes/pages/0.25.adoc index 6a5eb425e..3d29fb00f 100644 --- a/docs/modules/release-notes/pages/0.25.adoc +++ b/docs/modules/release-notes/pages/0.25.adoc @@ -1,6 +1,6 @@ = Pkl 0.25 Release Notes :version: 0.25 -:version-minor: 0.25.2 +:version-minor: 0.25.3 :release-date: February 1st, 2024 Pkl {version} was released on {release-date}. + diff --git a/gradle.properties b/gradle.properties index 6c475bbd9..46a74aaff 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,7 +1,7 @@ # suppress inspection "UnusedProperty" for whole file group=org.pkl-lang -version=0.25.2 +version=0.25.3 # 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 8c342b0ff..b79c20a2e 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 @@ -35,7 +35,7 @@ @TruffleLanguage.Registration( id = "pkl", name = "Pkl", - version = "0.25.2", + version = "0.25.3", characterMimeTypes = VmLanguage.MIME_TYPE, contextPolicy = ContextPolicy.SHARED) public final class VmLanguage extends TruffleLanguage { diff --git a/stdlib/Benchmark.pkl b/stdlib/Benchmark.pkl index 2cce42080..9c4df2625 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.25.2" } +@ModuleInfo { minPklVersion = "0.25.3" } module pkl.Benchmark import "pkl:platform" as _platform diff --git a/stdlib/DocPackageInfo.pkl b/stdlib/DocPackageInfo.pkl index 8ca6bd478..1556bd875 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.25.2" } +@ModuleInfo { minPklVersion = "0.25.3" } module pkl.DocPackageInfo import "pkl:reflect" diff --git a/stdlib/DocsiteInfo.pkl b/stdlib/DocsiteInfo.pkl index 13e2f4ebc..7bfc9c52a 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.25.2" } +@ModuleInfo { minPklVersion = "0.25.3" } module pkl.DocsiteInfo import "pkl:reflect" diff --git a/stdlib/Project.pkl b/stdlib/Project.pkl index 3bb52deb0..6f616be59 100644 --- a/stdlib/Project.pkl +++ b/stdlib/Project.pkl @@ -64,7 +64,7 @@ /// value = project /// } /// ``` -@ModuleInfo { minPklVersion = "0.25.2" } +@ModuleInfo { minPklVersion = "0.25.3" } module pkl.Project import "pkl:Project" diff --git a/stdlib/base.pkl b/stdlib/base.pkl index e81ca7fd8..e9539cb44 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.25.2" } +@ModuleInfo { minPklVersion = "0.25.3" } module pkl.base import "pkl:jsonnet" diff --git a/stdlib/json.pkl b/stdlib/json.pkl index e300ba91d..3cb9f30f3 100644 --- a/stdlib/json.pkl +++ b/stdlib/json.pkl @@ -15,7 +15,7 @@ //===----------------------------------------------------------------------===// /// A JSON parser. -@ModuleInfo { minPklVersion = "0.25.2" } +@ModuleInfo { minPklVersion = "0.25.3" } module pkl.json /// A JSON parser. diff --git a/stdlib/jsonnet.pkl b/stdlib/jsonnet.pkl index a352a064e..6131b75d4 100644 --- a/stdlib/jsonnet.pkl +++ b/stdlib/jsonnet.pkl @@ -15,7 +15,7 @@ //===----------------------------------------------------------------------===// /// A [Jsonnet](https://jsonnet.org) renderer. -@ModuleInfo { minPklVersion = "0.25.2" } +@ModuleInfo { minPklVersion = "0.25.3" } module pkl.jsonnet /// Constructs an [ImportStr]. diff --git a/stdlib/math.pkl b/stdlib/math.pkl index b2ec89ac1..49f03e34e 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.25.2" } +@ModuleInfo { minPklVersion = "0.25.3" } module pkl.math /// The minimum [Int] value: `-9223372036854775808`. diff --git a/stdlib/platform.pkl b/stdlib/platform.pkl index 2846cfa30..49ccae090 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.25.2" } +@ModuleInfo { minPklVersion = "0.25.3" } module pkl.platform /// The platform that the current program runs on. diff --git a/stdlib/protobuf.pkl b/stdlib/protobuf.pkl index 23f69667c..33c777770 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.25.2" } +@ModuleInfo { minPklVersion = "0.25.3" } module pkl.protobuf import "pkl:reflect" diff --git a/stdlib/reflect.pkl b/stdlib/reflect.pkl index 0300cab6b..948568088 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.25.2" } +@ModuleInfo { minPklVersion = "0.25.3" } module pkl.reflect import "pkl:base" diff --git a/stdlib/release.pkl b/stdlib/release.pkl index 3fd88ad42..548d065f0 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.25.2" } +@ModuleInfo { minPklVersion = "0.25.3" } module pkl.release import "pkl:semver" diff --git a/stdlib/semver.pkl b/stdlib/semver.pkl index 5fabe3cfb..b35b8f099 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.25.2" } +@ModuleInfo { minPklVersion = "0.25.3" } module pkl.semver /// Tells whether [version] is a valid semantic version number. diff --git a/stdlib/settings.pkl b/stdlib/settings.pkl index 9b49588ae..e4366a6dc 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.25.2" } +@ModuleInfo { minPklVersion = "0.25.3" } module pkl.settings /// The editor for viewing and editing Pkl files. diff --git a/stdlib/shell.pkl b/stdlib/shell.pkl index ed5171efd..1d3934f40 100644 --- a/stdlib/shell.pkl +++ b/stdlib/shell.pkl @@ -15,7 +15,7 @@ //===----------------------------------------------------------------------===// /// Utilities for generating shell scripts. -@ModuleInfo { minPklVersion = "0.25.2" } +@ModuleInfo { minPklVersion = "0.25.3" } module pkl.shell /// Escapes [str] by enclosing it in single quotes. diff --git a/stdlib/test.pkl b/stdlib/test.pkl index c5e0b0387..749c1f937 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.25.2" } +@ModuleInfo { minPklVersion = "0.25.3" } 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 f756efa76..2d022f96c 100644 --- a/stdlib/xml.pkl +++ b/stdlib/xml.pkl @@ -15,7 +15,7 @@ //===----------------------------------------------------------------------===// /// An XML renderer. -@ModuleInfo { minPklVersion = "0.25.2" } +@ModuleInfo { minPklVersion = "0.25.3" } module pkl.xml /// Renders values as XML. diff --git a/stdlib/yaml.pkl b/stdlib/yaml.pkl index 2b2ea1f41..f93a170d9 100644 --- a/stdlib/yaml.pkl +++ b/stdlib/yaml.pkl @@ -15,7 +15,7 @@ //===----------------------------------------------------------------------===// /// A YAML 1.2 compliant YAML parser. -@ModuleInfo { minPklVersion = "0.25.2" } +@ModuleInfo { minPklVersion = "0.25.3" } module pkl.yaml /// A YAML parser.