Skip to content

Commit ff1fa1a

Browse files
authored
Merge pull request #56 from tmr232/prep-for-0.0.12
Prep for 0.0.12
2 parents 582355e + 27da004 commit ff1fa1a

7 files changed

Lines changed: 19 additions & 19 deletions

File tree

.github/workflows/build.yml

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- uses: actions/checkout@v4
3333
with:
3434
repository: tmr232/function-graph-overview
35-
ref: "jetbrains-0.0.11"
35+
ref: "jetbrains-0.0.12"
3636
- uses: oven-sh/setup-bun@v2
3737

3838
- run: bun install
@@ -51,7 +51,7 @@ jobs:
5151
outputs:
5252
version: ${{ steps.properties.outputs.version }}
5353
changelog: ${{ steps.properties.outputs.changelog }}
54-
pluginVerifierHomeDir: ${{ steps.properties.outputs.pluginVerifierHomeDir }}
54+
5555
steps:
5656
# Check out the current repository
5757
- name: Fetch Sources
@@ -94,8 +94,6 @@ jobs:
9494
CHANGELOG="$(./gradlew getChangelog --unreleased --no-header --console=plain -q)"
9595
9696
echo "version=$VERSION" >> $GITHUB_OUTPUT
97-
echo "pluginVerifierHomeDir=~/.pluginVerifier" >> $GITHUB_OUTPUT
98-
9997
echo "changelog<<EOF" >> $GITHUB_OUTPUT
10098
echo "$CHANGELOG" >> $GITHUB_OUTPUT
10199
echo "EOF" >> $GITHUB_OUTPUT
@@ -225,17 +223,12 @@ jobs:
225223
# Setup Gradle
226224
- name: Setup Gradle
227225
uses: gradle/actions/setup-gradle@v4
228-
229-
# Cache Plugin Verifier IDEs
230-
- name: Setup Plugin Verifier IDEs Cache
231-
uses: actions/cache@v4
232226
with:
233-
path: ${{ needs.build.outputs.pluginVerifierHomeDir }}/ides
234-
key: plugin-verifier-${{ hashFiles('build/listProductsReleases.txt') }}
227+
cache-read-only: true
235228

236229
# Run Verify Plugin task and IntelliJ Plugin Verifier tool
237230
- name: Run Plugin Verification tasks
238-
run: ./gradlew verifyPlugin -Dplugin.verifier.home.dir=${{ needs.build.outputs.pluginVerifierHomeDir }}
231+
run: ./gradlew verifyPlugin
239232

240233
# Collect Plugin Verifier Result
241234
- name: Collect Plugin Verifier Result

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,18 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
66

77
## [Unreleased]
88

9+
## [0.0.12] - 2026-02-12
10+
11+
### Added
12+
13+
- Initial support for Java
14+
- Initial support for C#
15+
16+
917
## [0.0.11] - 2025-05-07
1018

19+
### Added
20+
1121
- Pan & Zoom enabled for graphs
1222

1323
## [0.0.10] - 2025-03-26

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ view for the current function.
1818

1919
Before installing, you can also try an [interactive demo](https://tmr232.github.io/function-graph-overview/).
2020

21-
The plugin currently supports Python, C, C++, Go, TypeScript & TSX, JavaScript & JSX.
21+
The plugin currently supports Python, C, C++, C#, Java, Go, TypeScript & TSX, JavaScript & JSX.
2222

2323
<!-- Plugin description end -->
2424

build.gradle.kts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,6 @@ dependencies {
4444
// Plugin Dependencies. Uses `platformPlugins` property from the gradle.properties file for plugin from JetBrains Marketplace.
4545
plugins(providers.gradleProperty("platformPlugins").map { it.split(',') })
4646

47-
instrumentationTools()
48-
pluginVerifier()
49-
zipSigner()
5047
testFramework(TestFrameworkType.Platform)
5148
}
5249
}

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ pluginGroup = com.github.tmr232.function_graph_overview
44
pluginName = Function Graph Overview
55
pluginRepositoryUrl = https://github.com/tmr232/jb-function-graph-overview
66
# SemVer format -> https://semver.org
7-
pluginVersion = 0.0.11
7+
pluginVersion = 0.0.12
88

99
# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
1010
pluginSinceBuild = 233
@@ -21,7 +21,7 @@ platformPlugins =
2121
platformBundledPlugins =
2222

2323
# Gradle Releases -> https://github.com/gradle/gradle/releases
24-
gradleVersion = 8.10.2
24+
gradleVersion = 8.14.4
2525

2626
# Opt-out flag for bundling Kotlin standard library -> https://jb.gg/intellij-platform-kotlin-stdlib
2727
kotlin.stdlib.default.dependency = false

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ junit = "4.13.2"
44

55
# plugins
66
changelog = "2.2.1"
7-
intelliJPlatform = "2.5.0"
7+
intelliJPlatform = "2.11.0"
88
kotlin = "2.1.20"
99
kover = "0.9.1"
1010
qodana = "2025.1.0"

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.4-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

0 commit comments

Comments
 (0)