Prepare 0.25.2 release

This commit is contained in:
Dan Chao
2024-02-08 15:23:52 -08:00
parent c60db2a450
commit c1a9e9e12f
23 changed files with 24 additions and 24 deletions

View File

@@ -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"
@@ -195,7 +195,7 @@ class SourceCode extends Annotation {
/// before the `module`, `amends`, or `extends` keyword, whichever comes first.
///
/// ```
/// @ModuleInfo { minPklVersion = "1.2.3"; author = "author@apple.com" }
/// @ModuleInfo { minPklVersion = "1.2.3" }
/// module myModule
/// ```
///