Skip to content

Commit

Permalink
Prepare 0.25.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
bioball committed Feb 8, 2024
1 parent c60db2a commit c1a9e9e
Show file tree
Hide file tree
Showing 23 changed files with 24 additions and 24 deletions.
2 changes: 1 addition & 1 deletion docs/antora.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: main
title: Main Project
version: 0.25.1
version: 0.25.2
prerelease: false
nav:
- nav.adoc
2 changes: 1 addition & 1 deletion docs/modules/ROOT/partials/component-attributes.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -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.1
:pkl-version-no-suffix: 0.25.2
// 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: ''
Expand Down
2 changes: 1 addition & 1 deletion docs/modules/release-notes/pages/0.25.adoc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
= Pkl 0.25 Release Notes
:version: 0.25
:version-minor: 0.25.1
:version-minor: 0.25.2
:release-date: February 1st, 2024

Pkl {version} was released on {release-date}. +
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# suppress inspection "UnusedProperty" for whole file

group=org.pkl-lang
version=0.25.1
version=0.25.2

# google-java-format requires jdk.compiler exports
org.gradle.jvmargs= \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
@TruffleLanguage.Registration(
id = "pkl",
name = "Pkl",
version = "0.25.0",
version = "0.25.2",
characterMimeTypes = VmLanguage.MIME_TYPE,
contextPolicy = ContextPolicy.SHARED)
public final class VmLanguage extends TruffleLanguage<VmContext> {
Expand Down
2 changes: 1 addition & 1 deletion stdlib/Benchmark.pkl
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
///
/// Warning: Although this module is ready for initial use,
/// benchmark results may be inaccurate or inconsistent.
@ModuleInfo { minPklVersion = "0.25.1" }
@ModuleInfo { minPklVersion = "0.25.2" }
module pkl.Benchmark

import "pkl:platform" as _platform
Expand Down
2 changes: 1 addition & 1 deletion stdlib/DocPackageInfo.pkl
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
/// @Deprecated { message = "Use `com.example.Birds.Parrot` instead" }
/// amends "pkl:PackageInfo"
/// ```
@ModuleInfo { minPklVersion = "0.25.1" }
@ModuleInfo { minPklVersion = "0.25.2" }
module pkl.DocPackageInfo

import "pkl:reflect"
Expand Down
2 changes: 1 addition & 1 deletion stdlib/DocsiteInfo.pkl
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
///
/// title = "Title displayed in the header of each page"
/// ```
@ModuleInfo { minPklVersion = "0.25.1" }
@ModuleInfo { minPklVersion = "0.25.2" }
module pkl.DocsiteInfo

import "pkl:reflect"
Expand Down
2 changes: 1 addition & 1 deletion stdlib/Project.pkl
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
/// value = project
/// }
/// ```
@ModuleInfo { minPklVersion = "0.25.1" }
@ModuleInfo { minPklVersion = "0.25.2" }
module pkl.Project

import "pkl:Project"
Expand Down
4 changes: 2 additions & 2 deletions stdlib/base.pkl
Original file line number Diff line number Diff line change
Expand Up @@ -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.1" }
@ModuleInfo { minPklVersion = "0.25.2" }
module pkl.base

import "pkl:jsonnet"
Expand Down Expand Up @@ -195,7 +195,7 @@ class SourceCode extends Annotation {
/// before the `module`, `amends`, or `extends` keyword, whichever comes first.
///
/// ```
/// @ModuleInfo { minPklVersion = "1.2.3"; author = "[email protected]" }
/// @ModuleInfo { minPklVersion = "1.2.3" }
/// module myModule
/// ```
///
Expand Down
2 changes: 1 addition & 1 deletion stdlib/json.pkl
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
//===----------------------------------------------------------------------===//

/// A JSON parser.
@ModuleInfo { minPklVersion = "0.25.1" }
@ModuleInfo { minPklVersion = "0.25.2" }
module pkl.json

/// A JSON parser.
Expand Down
2 changes: 1 addition & 1 deletion stdlib/jsonnet.pkl
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
//===----------------------------------------------------------------------===//

/// A [Jsonnet](https://jsonnet.org) renderer.
@ModuleInfo { minPklVersion = "0.25.1" }
@ModuleInfo { minPklVersion = "0.25.2" }
module pkl.jsonnet

/// Constructs an [ImportStr].
Expand Down
2 changes: 1 addition & 1 deletion stdlib/math.pkl
Original file line number Diff line number Diff line change
Expand Up @@ -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.1" }
@ModuleInfo { minPklVersion = "0.25.2" }
module pkl.math

/// The minimum [Int] value: `-9223372036854775808`.
Expand Down
2 changes: 1 addition & 1 deletion stdlib/platform.pkl
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
//===----------------------------------------------------------------------===//

/// Information about the platform that the current program runs on.
@ModuleInfo { minPklVersion = "0.25.1" }
@ModuleInfo { minPklVersion = "0.25.2" }
module pkl.platform

/// The platform that the current program runs on.
Expand Down
2 changes: 1 addition & 1 deletion stdlib/protobuf.pkl
Original file line number Diff line number Diff line change
Expand Up @@ -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.1" }
@ModuleInfo { minPklVersion = "0.25.2" }
module pkl.protobuf

import "pkl:reflect"
Expand Down
2 changes: 1 addition & 1 deletion stdlib/reflect.pkl
Original file line number Diff line number Diff line change
Expand Up @@ -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.1" }
@ModuleInfo { minPklVersion = "0.25.2" }
module pkl.reflect

import "pkl:base"
Expand Down
2 changes: 1 addition & 1 deletion stdlib/release.pkl
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
//===----------------------------------------------------------------------===//

/// Information about the Pkl release that the current program runs on.
@ModuleInfo { minPklVersion = "0.25.1" }
@ModuleInfo { minPklVersion = "0.25.2" }
module pkl.release

import "pkl:semver"
Expand Down
2 changes: 1 addition & 1 deletion stdlib/semver.pkl
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
//===----------------------------------------------------------------------===//

/// Parsing, comparison, and manipulation of [semantic version](https://semver.org/spec/v2.0.0.html) numbers.
@ModuleInfo { minPklVersion = "0.25.1" }
@ModuleInfo { minPklVersion = "0.25.2" }
module pkl.semver

/// Tells whether [version] is a valid semantic version number.
Expand Down
2 changes: 1 addition & 1 deletion stdlib/settings.pkl
Original file line number Diff line number Diff line change
Expand Up @@ -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.1" }
@ModuleInfo { minPklVersion = "0.25.2" }
module pkl.settings

/// The editor for viewing and editing Pkl files.
Expand Down
2 changes: 1 addition & 1 deletion stdlib/shell.pkl
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
//===----------------------------------------------------------------------===//

/// Utilities for generating shell scripts.
@ModuleInfo { minPklVersion = "0.25.1" }
@ModuleInfo { minPklVersion = "0.25.2" }
module pkl.shell

/// Escapes [str] by enclosing it in single quotes.
Expand Down
2 changes: 1 addition & 1 deletion stdlib/test.pkl
Original file line number Diff line number Diff line change
Expand Up @@ -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.1" }
@ModuleInfo { minPklVersion = "0.25.2" }
open module pkl.test

/// Named groups of boolean expressions that are expected to evaluate to [true].
Expand Down
2 changes: 1 addition & 1 deletion stdlib/xml.pkl
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
//===----------------------------------------------------------------------===//

/// An XML renderer.
@ModuleInfo { minPklVersion = "0.25.1" }
@ModuleInfo { minPklVersion = "0.25.2" }
module pkl.xml

/// Renders values as XML.
Expand Down
2 changes: 1 addition & 1 deletion stdlib/yaml.pkl
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
//===----------------------------------------------------------------------===//

/// A YAML 1.2 compliant YAML parser.
@ModuleInfo { minPklVersion = "0.25.1" }
@ModuleInfo { minPklVersion = "0.25.2" }
module pkl.yaml

/// A YAML parser.
Expand Down

0 comments on commit c1a9e9e

Please sign in to comment.