Skip to content

Commit d006080

Browse files
committed
fix: executeCommandAndChain now working;
1 parent db327d9 commit d006080

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,18 +14,18 @@ Maven:
1414
<dependency>
1515
<groupId>io.github.autocomplete1</groupId>
1616
<artifactId>jPowerShell2</artifactId>
17-
<version>1.0.0</version>
17+
<version>1.0.1</version>
1818
<scope>compile</scope>
1919
</dependency>
2020
```
2121

2222
Gradle:
2323
```
24-
implementation 'io.github.autocomplete1:jPowerShell2:1.0.0'
24+
implementation 'io.github.autocomplete1:jPowerShell2:1.0.1'
2525
```
2626

2727
Instead, you can direct download the JAR file and add it to your classpath.
28-
https://repo1.maven.org/maven2/io/github/autocomplete1/jPowerShell2/1.0.0/jPowerShell2-1.0.0.jar
28+
https://repo1.maven.org/maven2/io/github/autocomplete1/jPowerShell2/1.0.1/jPowerShell2-1.0.1.jar
2929

3030
## ⚡️ Usage
3131

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ plugins {
66
}
77

88
group = 'io.github.autocomplete1'
9-
version = '1.0.0'
9+
version = '1.0.1'
1010
description = 'Simple Java API to interact with PowerShell console'
1111
java.sourceCompatibility = JavaVersion.VERSION_1_8
1212

src/main/java/io/github/autocomplete1/PowerShellResponseHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@
2222
* @author Javier Garcia Alonso
2323
*/
2424
@FunctionalInterface
25-
interface PowerShellResponseHandler {
25+
public interface PowerShellResponseHandler {
2626
void handle(PowerShellResponse response);
2727
}

0 commit comments

Comments
 (0)