Skip to content

Commit bdd1ede

Browse files
committed
feat: tag 2025.0.7
1 parent 77766ae commit bdd1ede

File tree

4 files changed

+16
-3
lines changed

4 files changed

+16
-3
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@
33
.intellijPlatform
44
.qodana
55
build
6-
.kotlin
6+
.kotlin
7+
.env

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,12 @@
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

build.gradle.kts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ import org.jetbrains.changelog.Changelog
22
import org.jetbrains.changelog.markdownToHTML
33
import org.jetbrains.intellij.platform.gradle.TestFrameworkType
44
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
5+
import java.nio.charset.Charset
6+
import java.util.*
57

68
plugins {
79
id("java") // Java support
@@ -16,6 +18,9 @@ plugins {
1618
group = providers.gradleProperty("pluginGroup").get()
1719
version = 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.
2025
kotlin {
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

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ pluginGroup = com.github.xepozz.php_dump
44
pluginName = PHP Dump
55
pluginRepositoryUrl = 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
1010
pluginSinceBuild = 231

0 commit comments

Comments
 (0)