Skip to content

Commit

Permalink
Prepare 0.27 release (#37)
Browse files Browse the repository at this point in the history
  • Loading branch information
stackoverflow authored Jun 20, 2024
1 parent 1af6bc2 commit 5fd2e21
Show file tree
Hide file tree
Showing 5 changed files with 47 additions and 5 deletions.
4 changes: 2 additions & 2 deletions DEVELOPMENT.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 50,8 @@ To debug the plugin, go to the _runIde_ task in the Gradle window and debug it.

Before a release, run Code->Inspect Code->Whole Project (at least) for pkl-hub project and check the results.

The release CI build publishes the plugin zip but doesn't update the plugin update site.
To update the plugin update site, edit `updatePlugins.xml` on gh-pages branch.
The release CI build publishes the plugin zip and the `updatePlugins.xml`.
The plugin update site is automatically updated.

== Resources

Expand Down
2 changes: 1 addition & 1 deletion docs/antora.yml
Original file line number Diff line number Diff line change
@@ -1,5 1,5 @@
name: intellij
title: IntelliJ Plugin
version: 0.26.0
version: 0.27.0
nav:
- nav.adoc
34 changes: 34 additions & 0 deletions docs/modules/ROOT/pages/changelog.adoc
Original file line number Diff line number Diff line change
@@ -1,5 1,39 @@
= Changelog

[[release-0.27.0]]
== 0.27.0 (2024-06-20)

=== Fixes

* Fix triple-dot uri resolution (https://github.com/apple/pkl-intellij/pull/24[#24]).
* Fix runtime crash from `PklCreateProjectAction` in 2024.1 (https://github.com/apple/pkl-intellij/pull/22[#22]).
* Fix false positive "expression is always false" (https://github.com/apple/pkl-intellij/pull/33[#33]).
* Fix type constraint checking of octal literals (https://github.com/apple/pkl-intellij/pull/34[#34]).
* Fix path resolution for packages on Windows (https://github.com/apple/pkl-intellij/pull/35[#35]).

=== Miscellaneous

* Move `kotlin.serialization.plugin` to version catalog (https://github.com/apple/pkl-intellij/pull/14[#14]).
* Documentation improvements (https://github.com/apple/pkl-intellij/pull/7[#7], https://github.com/apple/pkl-intellij/pull/15[#15]).

=== Changes

* Change Pkl file icon to use the logo (https://github.com/apple/pkl-intellij/pull/6[#6]).
* Improve semver handling in package uris (https://github.com/apple/pkl-intellij/pull/20[#20]).
* Add const check for typealiases (new in Pkl 0.26) (https://github.com/apple/pkl-intellij/pull/32[#32]).
* Add support for breadcrumbs (https://github.com/apple/pkl-intellij/pull/31[#31]).
* Add support for new package cache dir (new in Pkl 0.26) (https://github.com/apple/pkl-intellij/pull/36[#36]).
* Add support for Pkl 0.26.0 standard library (https://github.com/apple/pkl-intellij/pull/38[#38]).

=== Contributors ❤️

We would like to thank the contributors to this release (in alphabetical order):

* https://github.com/Madmegsox1[@Madmegsox1]
* https://github.com/MrNavaStar[@MrNavaStar]
* https://github.com/StefMa[@StefMa]
* https://github.com/WarningImHack3r[@WarningImHack3r]

[[release-0.26.0]]
== 0.26.0 (2024-02-02)

Expand Down
3 changes: 1 addition & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 2,8 @@

group=org.pkl

# after a release, update `updatePlugins.xml` on gh-pages branch
# https://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/update_plugins_format.html
version=0.26.0
version=0.27.0

org.gradle.jvmargs=-Dfile.encoding=UTF-8
org.gradle.parallel=true
Expand Down
9 changes: 9 additions & 0 deletions src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 21,15 @@
]]></description>
<!-- language=html -->
<change-notes><![CDATA[
<b>0.27.0</b>
<ul>
<li>Change Pkl file icon to the logo</li>
<li>Improve semver handling in package uris</li>
<li>Add const check for typealiases</li>
<li>Add support for breadcrumbs</li>
<li>Add support for new package cache dir</li>
<li>Add support for Pkl 0.26.0 standard library</li>
</ul>
<b>0.26.0</b>
<ul>
<li>First release</li>
Expand Down

0 comments on commit 5fd2e21

Please sign in to comment.