Skip to content

Commit de6c26f

Browse files
committed
updated to the latest version
1 parent 2a5fc8f commit de6c26f

6 files changed

Lines changed: 23 additions & 23 deletions

File tree

content/_index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ private static void read(TerminalConnection connection, Readline readline) {
226226
<dependency>
227227
<groupId>org.aesh</groupId>
228228
<artifactId>aesh</artifactId>
229-
<version>1.7</version>
229+
<version>3.6.1</version>
230230
</dependency>
231231
```
232232

@@ -235,20 +235,20 @@ private static void read(TerminalConnection connection, Readline readline) {
235235
<dependency>
236236
<groupId>org.aesh</groupId>
237237
<artifactId>readline</artifactId>
238-
<version>2.6</version>
238+
<version>3.6</version>
239239
</dependency>
240240
```
241241

242242
### Gradle
243243

244244
**Æsh:**
245245
```groovy
246-
implementation 'org.aesh:aesh:1.7'
246+
implementation 'org.aesh:aesh:3.6.1'
247247
```
248248

249249
**Readline:**
250250
```groovy
251-
implementation 'org.aesh:readline:2.6'
251+
implementation 'org.aesh:readline:3.6'
252252
```
253253

254254
**Extensions (Optional - Ready-made commands):**

content/docs/aesh/getting-started.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@ Add the following dependency to your Maven project:
1515
<dependency>
1616
<groupId>org.aesh</groupId>
1717
<artifactId>aesh</artifactId>
18-
<version>3.6</version>
18+
<version>3.6.1</version>
1919
</dependency>
2020
```
2121

2222
For Gradle:
2323

2424
```groovy
2525
dependencies {
26-
implementation 'org.aesh:aesh:3.6'
26+
implementation 'org.aesh:aesh:3.6.1'
2727
}
2828
```
2929

@@ -288,7 +288,7 @@ A minimal `pom.xml` to get started:
288288
<dependency>
289289
<groupId>org.aesh</groupId>
290290
<artifactId>aesh</artifactId>
291-
<version>3.6</version>
291+
<version>3.6.1</version>
292292
</dependency>
293293
</dependencies>
294294
</project>

content/docs/aesh/installation.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Add the dependency to your `pom.xml`:
1313
<dependency>
1414
<groupId>org.aesh</groupId>
1515
<artifactId>aesh</artifactId>
16-
<version>3.6</version>
16+
<version>3.6.1</version>
1717
</dependency>
1818
```
1919

@@ -23,7 +23,7 @@ Add the dependency to your `build.gradle`:
2323

2424
```groovy
2525
dependencies {
26-
implementation 'org.aesh:aesh:3.6'
26+
implementation 'org.aesh:aesh:3.6.1'
2727
}
2828
```
2929

@@ -37,7 +37,7 @@ To generate command metadata at compile time (3-4x faster startup, no runtime re
3737
<dependency>
3838
<groupId>org.aesh</groupId>
3939
<artifactId>aesh-processor</artifactId>
40-
<version>3.6</version>
40+
<version>3.6.1</version>
4141
<scope>provided</scope>
4242
</dependency>
4343
```
@@ -46,8 +46,8 @@ To generate command metadata at compile time (3-4x faster startup, no runtime re
4646

4747
```groovy
4848
dependencies {
49-
annotationProcessor 'org.aesh:aesh-processor:3.6'
50-
compileOnly 'org.aesh:aesh-processor:3.6'
49+
annotationProcessor 'org.aesh:aesh-processor:3.6.1'
50+
compileOnly 'org.aesh:aesh-processor:3.6.1'
5151
}
5252
```
5353

content/docs/readline/connectivity.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,14 +55,14 @@ SSH (Secure Shell) provides encrypted, authenticated terminal access. This is th
5555
<dependency>
5656
<groupId>org.aesh</groupId>
5757
<artifactId>aesh-terminal-ssh</artifactId>
58-
<version>3.1</version>
58+
<version>3.6</version>
5959
</dependency>
6060
```
6161

6262
### Gradle Dependency
6363

6464
```groovy
65-
implementation 'org.aesh:aesh-terminal-ssh:3.1'
65+
implementation 'org.aesh:aesh-terminal-ssh:3.6'
6666
```
6767

6868
### Basic SSH Server
@@ -318,7 +318,7 @@ Telnet provides simple, unencrypted terminal access. **Use only for development
318318
<dependency>
319319
<groupId>org.aesh</groupId>
320320
<artifactId>aesh-terminal-telnet</artifactId>
321-
<version>3.1</version>
321+
<version>3.6</version>
322322
</dependency>
323323
```
324324

@@ -398,7 +398,7 @@ The terminal-http module provides:
398398
<dependency>
399399
<groupId>org.aesh</groupId>
400400
<artifactId>terminal-http</artifactId>
401-
<version>3.1</version>
401+
<version>3.6</version>
402402
</dependency>
403403
```
404404

content/docs/readline/getting-started.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@ Add the following dependency to your Maven project:
1515
<dependency>
1616
<groupId>org.aesh</groupId>
1717
<artifactId>readline</artifactId>
18-
<version>3.1</version>
18+
<version>3.6</version>
1919
</dependency>
2020
```
2121

2222
For Gradle:
2323

2424
```groovy
2525
dependencies {
26-
implementation 'org.aesh:readline:3.1'
26+
implementation 'org.aesh:readline:3.6'
2727
}
2828
```
2929

content/docs/readline/installation.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Add the dependency to your `pom.xml`:
1313
<dependency>
1414
<groupId>org.aesh</groupId>
1515
<artifactId>readline</artifactId>
16-
<version>3.1</version>
16+
<version>3.6</version>
1717
</dependency>
1818
```
1919

@@ -23,7 +23,7 @@ Add the dependency to your `build.gradle`:
2323

2424
```groovy
2525
dependencies {
26-
implementation 'org.aesh:readline:3.1'
26+
implementation 'org.aesh:readline:3.6'
2727
}
2828
```
2929

@@ -47,7 +47,7 @@ mvn clean install
4747
<dependency>
4848
<groupId>org.aesh</groupId>
4949
<artifactId>terminal-ssh</artifactId>
50-
<version>3.1</version>
50+
<version>3.6</version>
5151
</dependency>
5252
```
5353

@@ -57,7 +57,7 @@ mvn clean install
5757
<dependency>
5858
<groupId>org.aesh</groupId>
5959
<artifactId>terminal-telnet</artifactId>
60-
<version>3.1</version>
60+
<version>3.6</version>
6161
</dependency>
6262
```
6363

@@ -67,7 +67,7 @@ mvn clean install
6767
<dependency>
6868
<groupId>org.aesh</groupId>
6969
<artifactId>terminal-http</artifactId>
70-
<version>3.1</version>
70+
<version>3.6</version>
7171
</dependency>
7272
```
7373

0 commit comments

Comments
 (0)