Skip to content

Commit

Permalink
Updated version to 0.6.1.
Browse files Browse the repository at this point in the history
Don't execute the run configuration bld commands synchronously.
Updated changelog.
  • Loading branch information
gbevin committed Jul 30, 2024
1 parent 5bb8d6a commit 488b969
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

## [Unreleased]

- Fixed run configuration `bld` commands not executing asynchronously.

## [0.6.0] - 2024-07-29

- Added assigning keyboard shortcuts to `bld` commands.
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pluginGroup = bld.idea
pluginName = bld
pluginRepositoryUrl = https://github.com/rife2/bld-idea
# SemVer format -> https://semver.org
pluginVersion = 0.6.0
pluginVersion = 0.6.1

# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
pluginSinceBuild = 232
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public void run(@NotNull ProgressIndicator indicator) {
if (handler != null) {
console.attachToProcess(handler);

handler.runProcess();
handler.startNotify();
}
future.complete(handler);
}
Expand Down

0 comments on commit 488b969

Please sign in to comment.