Skip to content

Commit 20177a8

Browse files
committed
Update to 1.3.0
1 parent 4113214 commit 20177a8

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ plugins {
55
}
66

77
group 'io.jactl'
8-
version '1.2.0'
8+
version '1.3.0'
99

1010
repositories {
1111
mavenLocal()
@@ -18,7 +18,7 @@ java {
1818
}
1919

2020
dependencies {
21-
implementation('io.jactl:jactl:1.2.0')
21+
implementation 'io.jactl:jactl:1.3.0'
2222
implementation 'org.jline:jline:3.21.0'
2323
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0'
2424
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.0'

docs/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ It provides a Read-Evaluate-Print-Loop execution shell for testing simple Jactl
88
## Download
99

1010
You can download the Jactl REPL jar file from Maven Central using this link:
11-
[https://repo1.maven.org/maven2/io/jactl/jactl-repl/1.2.0/jactl-repl-1.2.0.jar](https://repo1.maven.org/maven2/io/jactl/jactl-repl/1.2.0/jactl-repl-1.2.0.jar)
11+
[https://repo1.maven.org/maven2/io/jactl/jactl-repl/1.3.0/jactl-repl-1.3.0.jar](https://repo1.maven.org/maven2/io/jactl/jactl-repl/1.3.0/jactl-repl-1.3.0.jar)
1212

1313
Since it is built as a "fat" jar it can be run standalone (see [Running](#Running) section below).
1414

@@ -18,7 +18,7 @@ Since it is built as a "fat" jar it can be run standalone (see [Running](#Runnin
1818

1919
* Java 11+
2020
* JLine 3.21.0
21-
* Jactl 1.2.0
21+
* Jactl 1.3.0
2222
* Gradle 8.0.2
2323

2424
### Build
@@ -85,7 +85,7 @@ The main ones to remember:
8585
As well as entering Jactl code at the prompt, the REPL understands a limit set of commands that all start with `:`.
8686
For example, `:h` or `:?` will print out the help text listing the commands available:
8787
```
88-
$ java -jar build/libs/jactl-repl-1.2.0-SNAPSHOT.jar
88+
$ java -jar build/libs/jactl-repl-1.3.0-SNAPSHOT.jar
8989
> :h
9090
9191
Available commands:

src/main/java/io/jactl/repl/Repl.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
package io.jactl.repl;
1919

2020
import io.jactl.*;
21-
import io.jactl.Compiler;
2221
import io.jactl.runtime.RuntimeUtils;
2322
import org.jline.builtins.Completers;
2423
import org.jline.reader.EndOfFileException;

0 commit comments

Comments
 (0)