Skip to content

Commit 741174e

Browse files
committed
Update the version to be 1.7.19
1 parent cb0a741 commit 741174e

File tree

8 files changed

+15
-15
lines changed

8 files changed

+15
-15
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ Add the dependency to your `pom.xml`:
6868
<dependency>
6969
<groupId>org.tinystruct</groupId>
7070
<artifactId>tinystruct</artifactId>
71-
<version>1.7.18</version>
71+
<version>1.7.19</version>
7272
<classifier>jar-with-dependencies</classifier>
7373
</dependency>
7474
```

en/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Add the dependency to your pom.xml:
2727
<dependency>
2828
<groupId>org.tinystruct</groupId>
2929
<artifactId>tinystruct</artifactId>
30-
<version>1.7.18</version>
30+
<version>1.7.19</version>
3131
<classifier>jar-with-dependencies</classifier>
3232
</dependency>
3333
```

en/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Add the tinystruct dependency to your project's `pom.xml` file:
2929
<dependency>
3030
<groupId>org.tinystruct</groupId>
3131
<artifactId>tinystruct</artifactId>
32-
<version>1.7.18</version>
32+
<version>1.7.19</version>
3333
<classifier>jar-with-dependencies</classifier>
3434
</dependency>
3535
```

en/whats-new-1.7.18.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# What's New in tinystruct 1.7.18
1+
# What's New in tinystruct 1.7.19
22

3-
This document highlights the new features, improvements, and changes introduced in tinystruct version 1.7.18.
3+
This document highlights the new features, improvements, and changes introduced in tinystruct version 1.7.19.
44

55
## Major New Features
66

@@ -154,7 +154,7 @@ bin/dispatcher start --import org.tinystruct.system.UndertowServer
154154

155155
### Benchmark Results
156156

157-
Version 1.7.18 achieves exceptional performance:
157+
Version 1.7.19 achieves exceptional performance:
158158

159159
```
160160
Running 30s test @ http://127.0.0.1:8080/?q=say/Praise the Lord!
@@ -287,18 +287,18 @@ try (DatabaseOperator operator = new DatabaseOperator()) {
287287

288288
### None
289289

290-
Version 1.7.18 maintains backward compatibility with previous 1.8.x versions. All existing code should continue to work without modifications.
290+
Version 1.7.19 maintains backward compatibility with previous 1.8.x versions. All existing code should continue to work without modifications.
291291

292292
## Migration Guide
293293

294-
### From 1.7.15 to 1.7.18
294+
### From 1.7.15 to 1.7.19
295295

296296
1. **Update Maven Dependency**
297297
```xml
298298
<dependency>
299299
<groupId>org.tinystruct</groupId>
300300
<artifactId>tinystruct</artifactId>
301-
<version>1.7.18</version>
301+
<version>1.7.19</version>
302302
</dependency>
303303
```
304304

@@ -340,7 +340,7 @@ Version 1.7.18 maintains backward compatibility with previous 1.8.x versions. Al
340340

341341
## Conclusion
342342

343-
Version 1.7.18 represents a significant step forward for the tinystruct framework, adding modern features like HTTP method-specific actions, AI integration, and SSE support while maintaining the framework's core philosophy of simplicity, performance, and ease of use.
343+
Version 1.7.19 represents a significant step forward for the tinystruct framework, adding modern features like HTTP method-specific actions, AI integration, and SSE support while maintaining the framework's core philosophy of simplicity, performance, and ease of use.
344344

345345
The framework continues to deliver exceptional performance (86,000+ req/s) while remaining lightweight and developer-friendly. With no main() method required and unified CLI/Web support, tinystruct makes Java application development faster and more enjoyable.
346346

index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,7 @@ <h4>Zero Configuration</h4>
438438
const commands = [
439439
"$ bin/dispatcher --version",
440440
" _/ ' _ _/ _ _ _/",
441-
" / / /) (/ _) / / (/ ( / 1.7.18",
441+
" / / /) (/ _) / / (/ ( / 1.7.19",
442442
" /",
443443
" ",
444444
"$ bin/dispatcher --help",
@@ -472,7 +472,7 @@ <h4>Zero Configuration</h4>
472472
"# bin/dispatcher start --import org.tinystruct.system.NettyHttpServer --server-port 777",
473473
" ",
474474
" _/ ' _ _/ _ _ _/",
475-
" / / /) (/ _) / / (/ ( / 1.7.18",
475+
" / / /) (/ _) / / (/ ( / 1.7.19",
476476
" /",
477477
" ",
478478
`${new Date().toLocaleString()} org.tinystruct.system.NettyHttpServer start`,

zh/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ tinystruct 是一个简单而强大的 Java 开发框架。它秉承简单思维
3232
<dependency>
3333
<groupId>org.tinystruct</groupId>
3434
<artifactId>tinystruct</artifactId>
35-
<version>1.7.18</version>
35+
<version>1.7.19</version>
3636
<classifier>jar-with-dependencies</classifier>
3737
</dependency>
3838
```

zh/core-concepts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public class MyApp extends AbstractApplication {
3232

3333
@Override
3434
public String version() {
35-
return "1.7.18";
35+
return "1.7.19";
3636
}
3737
}
3838
```

zh/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ https://github.com/tinystruct/tinystruct-archetype
2727
<dependency>
2828
<groupId>org.tinystruct</groupId>
2929
<artifactId>tinystruct</artifactId>
30-
<version>1.7.18</version>
30+
<version>1.7.19</version>
3131
<classifier>jar-with-dependencies</classifier>
3232
</dependency>
3333
```

0 commit comments

Comments
 (0)