Skip to content

Commit 0ac1d2d

Browse files
committed
chore: release 1.7.18
1 parent abc628e commit 0ac1d2d

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
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.17</version>
29+
<version>1.7.18</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.17</version>
33+
<version>1.7.18</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.17
99+
/ / /) (/ _) / / (/ ( / 1.7.18
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.17"
20+
VERSION="1.7.18"
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.17"
22+
set "VERSION=1.7.18"
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.17.jar"
28+
TARGET_JAR="./target/tinystruct-1.7.18.jar"
2929
NATIVE_NAME="dispatcher-native"
3030
MAIN_CLASS="org.tinystruct.system.Dispatcher"
3131
CONFIG_DIR="./bin/.metadata"

pom.xml

Lines changed: 1 addition & 1 deletion
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.17</version>
7+
<version>1.7.18</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.

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.17";
27+
public static final String VERSION = "1.7.18";
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)