File tree Expand file tree Collapse file tree 4 files changed +16
-3
lines changed
Expand file tree Collapse file tree 4 files changed +16
-3
lines changed Original file line number Diff line number Diff line change 33.intellijPlatform
44.qodana
55build
6- .kotlin
6+ .kotlin
7+ .env
Original file line number Diff line number Diff line change 33# PHP Dump Changelog
44
55## [ Unreleased]
6+
7+ ## [ 2025.0.6] - 2025-07-30
8+
69### Added
10+
711- Initial scaffold created from [ IntelliJ Platform Plugin Template] ( https://github.com/JetBrains/intellij-platform-plugin-template )
12+
13+ [ Unreleased ] : https://github.com/xepozz/php-opcodes-plugin/compare/v2025.0.6...HEAD
14+ [ 2025.0.6 ] : https://github.com/xepozz/php-opcodes-plugin/commits/v2025.0.6
Original file line number Diff line number Diff line change @@ -2,6 +2,8 @@ import org.jetbrains.changelog.Changelog
22import org.jetbrains.changelog.markdownToHTML
33import org.jetbrains.intellij.platform.gradle.TestFrameworkType
44import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
5+ import java.nio.charset.Charset
6+ import java.util.*
57
68plugins {
79 id(" java" ) // Java support
@@ -16,6 +18,9 @@ plugins {
1618group = providers.gradleProperty(" pluginGroup" ).get()
1719version = providers.gradleProperty(" pluginVersion" ).get()
1820
21+ val envProperties = Properties ()
22+ envProperties.load(file(" .env" ).reader(Charset .forName(" UTF-8" )))
23+
1924// Set the JVM language level used to build the project.
2025kotlin {
2126 jvmToolchain(21 )
@@ -98,7 +103,7 @@ intellijPlatform {
98103 }
99104
100105 publishing {
101- token = providers.environmentVariable( " PUBLISH_TOKEN" )
106+ token = provider { envProperties[ " PUBLISH_TOKEN" ] as String }
102107 // The pluginVersion is based on the SemVer (https://semver.org) and supports pre-release labels, like 2.1.7-alpha.3
103108 // Specify pre-release label to publish the plugin in a custom Release Channel automatically. Read more:
104109 // https://plugins.jetbrains.com/docs/intellij/deployment.html#specifying-a-release-channel
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ pluginGroup = com.github.xepozz.php_dump
44pluginName = PHP Dump
55pluginRepositoryUrl = https://github.com/xepozz/php-opcodes-plugin
66# SemVer format -> https://semver.org
7- pluginVersion = 2025.0.6
7+ pluginVersion = 2025.0.7
88
99# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
1010pluginSinceBuild = 231
You can’t perform that action at this time.
0 commit comments