Skip to content

Commit 748d080

Browse files
committed
0.0.9
1 parent 146cc85 commit 748d080

File tree

4 files changed

+21
-5
lines changed

4 files changed

+21
-5
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44

55
## [Unreleased]
66

7+
## [0.0.9] - 2025-07-08
8+
- Fix more deprecated method calls
9+
710
## [0.0.8] - 2025-07-08
811
- Fix some deprecated method calls
912
- Fix rare bug where a non-critical exception would prevent plugin from working
@@ -73,3 +76,19 @@ Created Regex Helper from RegexPlugin. Added multi-group highlighting support.
7376
[0.0.4]: https://github.com/Marsonge/regexPlugin/compare/v0.0.3...v0.0.4
7477

7578
[0.0.3]: https://github.com/Marsonge/regexPlugin/commits/v0.0.3
79+
80+
[Unreleased]: https://github.com/Marsonge/regexPlugin/compare/v0.0.9...HEAD
81+
82+
[0.0.9]: https://github.com/Marsonge/regexPlugin/compare/v0.0.8...v0.0.9
83+
84+
[0.0.8]: https://github.com/Marsonge/regexPlugin/compare/v0.0.7...v0.0.8
85+
86+
[0.0.7]: https://github.com/Marsonge/regexPlugin/compare/v0.0.6...v0.0.7
87+
88+
[0.0.6]: https://github.com/Marsonge/regexPlugin/compare/v0.0.5...v0.0.6
89+
90+
[0.0.5]: https://github.com/Marsonge/regexPlugin/compare/v0.0.4...v0.0.5
91+
92+
[0.0.4]: https://github.com/Marsonge/regexPlugin/compare/v0.0.3...v0.0.4
93+
94+
[0.0.3]: https://github.com/Marsonge/regexPlugin/commits/v0.0.3

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ pluginGroup = com.timindustries.marsonge.regexpluginv2
44
pluginName = Regex Helper
55
pluginRepositoryUrl = https://github.com/Marsonge/regexPlugin
66
# SemVer format -> https://semver.org
7-
pluginVersion = 0.0.8
7+
pluginVersion = 0.0.9
88

99
# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
1010
pluginSinceBuild = 231

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ annotations = "24.0.1"
66
dokka = "1.8.10"
77
kotlin = "1.8.10"
88
changelog = "2.0.0"
9-
gradleIntelliJPlugin = "1.13.3"
9+
gradleIntelliJPlugin = "1.15.0"
1010
qodana = "0.1.13"
1111
kover = "0.6.1"
1212

src/main/java/com/timindustries/regexplugin/uiInterface/ComponentManager.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,6 @@ public void setSelected(AnActionEvent event, boolean b) {
5656
action.setSelected(b);
5757
}
5858

59-
public boolean displayTextInToolbar() {
60-
return action.showDescription();
61-
}
6259
}
6360

6461
public class ComponentManager {

0 commit comments

Comments
 (0)