Skip to content

Commit b68ffd9

Browse files
committed
fix: update version to 1.7.19 and upgrade dependencies
- Version: Bump project version from 1.7.18 to 1.7.19 across pom.xml, scripts, and documentation. - Documentation: Update version references in README.md and DEVELOPER_GUIDE.md. - Application: Update VERSION constant in ApplicationManager.java. - Scripts: Update version variables in bin/dispatcher, bin/dispatcher.cmd, and build.sh. - Dependencies: Upgrade lettuce.version to 7.5.0.RELEASE. - Dependencies: Upgrade sqlite.version to 3.51.3.0. - Dependencies: Upgrade mockito.version to 5.23.0.
1 parent 6ed85bc commit b68ffd9

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

DEVELOPER_GUIDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Add the following dependency to your `pom.xml`:
2626
<dependency>
2727
<groupId>org.tinystruct</groupId>
2828
<artifactId>tinystruct</artifactId>
29-
<version>1.7.18</version>
29+
<version>1.7.19</version>
3030
</dependency>
3131
```
3232

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Installation and Getting Started Manually
3030
<dependency>
3131
<groupId>org.tinystruct</groupId>
3232
<artifactId>tinystruct</artifactId>
33-
<version>1.7.18</version>
33+
<version>1.7.19</version>
3434
<classifier>jar-with-dependencies</classifier> <!-- Optional -->
3535
</dependency>
3636
```
@@ -96,7 +96,7 @@ Execute in CLI mode
9696
$ bin/dispatcher --version
9797

9898
_/ ' _ _/ _ _ _/
99-
/ / /) (/ _) / / (/ ( / 1.7.18
99+
/ / /) (/ _) / / (/ ( / 1.7.19
100100
/
101101
```
102102
```tcsh

bin/dispatcher

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
# ***************************************************************************
1818

1919
ROOT="$(pwd)"
20-
VERSION="1.7.18"
20+
VERSION="1.7.19"
2121
cd "$(dirname "$0")" || exit
2222
cd "../"
2323
# Navigate to the root directory

bin/dispatcher.cmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
set "MAVEN_REPO=%USERPROFILE%\.m2\repository\org\tinystruct\tinystruct"
2020
@REM Consolidate classpath entries, initialize ROOT and VERSION
2121
set "ROOT=%~dp0.."
22-
set "VERSION=1.7.18"
22+
set "VERSION=1.7.19"
2323

2424
@REM Define the paths for tinystruct jars in the Maven repository
2525
set "DEFAULT_JAR_FILE=%MAVEN_REPO%\%VERSION%\tinystruct-%VERSION%.jar"

build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ elif [ -f "$HOME/.bash_profile" ]; then
2525
fi
2626

2727
# Define variables
28-
TARGET_JAR="./target/tinystruct-1.7.18.jar"
28+
TARGET_JAR="./target/tinystruct-1.7.19.jar"
2929
NATIVE_NAME="dispatcher-native"
3030
MAIN_CLASS="org.tinystruct.system.Dispatcher"
3131
CONFIG_DIR="./bin/.metadata"

pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>org.tinystruct</groupId>
66
<artifactId>tinystruct</artifactId>
7-
<version>1.7.18</version>
7+
<version>1.7.19</version>
88
<name>tinystruct framework</name>
99
<description>A lightweight, modular Java application framework for web and CLI development,
1010
designed for AI integration and plugin-based architecture.
@@ -133,12 +133,12 @@
133133
<jna.version>5.18.1</jna.version>
134134
<jupiter.version>6.0.3</jupiter.version>
135135
<kafka.version>4.2.0</kafka.version>
136-
<lettuce.version>7.4.0.RELEASE</lettuce.version>
136+
<lettuce.version>7.5.0.RELEASE</lettuce.version>
137137
<maven.compiler.source>17</maven.compiler.source>
138138
<maven.compiler.target>17</maven.compiler.target>
139-
<sqlite.version>3.51.2.0</sqlite.version>
139+
<sqlite.version>3.51.3.0</sqlite.version>
140140
<h2.version>2.4.240</h2.version>
141-
<mockito.version>5.21.0</mockito.version>
141+
<mockito.version>5.23.0</mockito.version>
142142
<nashorn.version>15.7</nashorn.version>
143143
<zxing.version>3.5.4</zxing.version>
144144
</properties>

src/main/java/org/tinystruct/system/ApplicationManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
import java.util.concurrent.ConcurrentHashMap;
2525

2626
public final class ApplicationManager {
27-
public static final String VERSION = "1.7.18";
27+
public static final String VERSION = "1.7.19";
2828
private static final ConcurrentHashMap<String, Application> applications = new ConcurrentHashMap<>();
2929
private static final ActionRegistry ROUTE_REGISTRY_INSTANCE = ActionRegistry.getInstance();
3030
private static Configuration<String> settings;

0 commit comments

Comments
 (0)