Skip to content

Commit a3cc2f0

Browse files
committed
Start next dev iteration
1 parent e12c655 commit a3cc2f0

28 files changed

+83
-26
lines changed

docs/antora.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: main
22
title: Main Project
3-
version: 0.29.0
4-
prerelease: false
3+
version: 0.30.0-dev
4+
prerelease: true
55
nav:
66
- nav.adoc

docs/modules/ROOT/partials/component-attributes.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
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.29.0
6+
:pkl-version-no-suffix: 0.30.0
77
// tells whether pkl version corresponding to current git commit
88
// is a release version (:is-release-version: '') or dev version (:!is-release-version:)
9-
:is-release-version: ''
9+
:!is-release-version:
1010

1111
// the remaining attributes do not need to be updated regularly
1212

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
= Pkl 0.30 Release Notes
2+
:version: 0.30
3+
:version-minor: 0.30.0
4+
:release-date: TBD
5+
6+
link:ROOT:partial$component-attributes.adoc[role=include]
7+
8+
Pkl {version} was released on {release-date}. +
9+
[.small]#The latest bugfix release is {version-minor}. (xref:changelog.adoc[All Versions])#
10+
11+
The next release (0.XX) is scheduled for ???..
12+
To see what's coming in the future, follow the {uri-pkl-roadmap}[Pkl Roadmap].
13+
14+
Please send feedback and questions to https://github.com/apple/pkl/discussions[GitHub Discussions], or submit an issue on https://github.com/apple/pkl/issues/new[Github]. +
15+
16+
[small]#Pkl is hosted on https://github.com/apple/pkl[GitHub].
17+
To get started, follow xref:pkl-cli:index.adoc#installation[Installation].#
18+
19+
== Highlights [small]#💖#
20+
21+
News you don't want to miss.
22+
23+
=== XXX
24+
25+
== Noteworthy [small]#🎶#
26+
27+
Ready when you need them.
28+
29+
=== XXX
30+
31+
== Breaking Changes [small]#💔#
32+
33+
Things to watch out for when upgrading.
34+
35+
=== XXX
36+
37+
== Miscellaneous [small]#🐸#
38+
39+
* XXX
40+
41+
== Bugs fixed [small]#🐜#
42+
43+
The following bugs have been fixed.
44+
45+
* XXX (https://github.com/apple/pkl/issues/XXX[XXX])
46+
47+
== Contributors [small]#🙏#
48+
49+
We would like to thank the contributors to this release (in alphabetical order):
50+
51+
* XXX

docs/modules/release-notes/pages/changelog.adoc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
= Changelog
22
include::ROOT:partial$component-attributes.adoc[]
33

4+
[[release-0.30.0]]
5+
== 0.30.0 (TBD)
6+
47
[[release-0.29.0]]
58
== 0.29.0 (2025-07-24)
69

docs/modules/release-notes/pages/index.adoc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
The Pkl team aims to release a new version of Pkl in February, June, and October of each year.
44

5+
* xref:0.30.adoc[0.30 Release Notes]
6+
* xref:0.29.adoc[0.29 Release Notes]
57
* xref:0.28.adoc[0.28 Release Notes]
68
* xref:0.27.adoc[0.27 Release Notes]
79
* xref:0.26.adoc[0.26 Release Notes]

docs/nav.adoc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@
4141
* xref:ROOT:evolution-and-roadmap.adoc[Evolution and Roadmap]
4242
4343
* xref:release-notes:index.adoc[Release Notes]
44+
** xref:release-notes:0.30.adoc[0.30 Release Notes]
4445
** xref:release-notes:0.29.adoc[0.29 Release Notes]
4546
** xref:release-notes:0.28.adoc[0.28 Release Notes]
4647
** xref:release-notes:0.27.adoc[0.27 Release Notes]

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.29.0
4+
version=0.30.0
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.29.0",
36+
version = "0.30.0-dev",
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.29.0" }
39+
@ModuleInfo { minPklVersion = "0.30.0" }
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.29.0" }
66+
@ModuleInfo { minPklVersion = "0.30.0" }
6767
module pkl.DocPackageInfo
6868

6969
import "pkl:reflect"

0 commit comments

Comments
 (0)