Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 8f7fa11

Browse files
committed
Update the version to be 1.7.4.
1 parent bb1ed67 commit 8f7fa11

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Installation and Getting Started
2121
<dependency>
2222
<groupId>org.tinystruct</groupId>
2323
<artifactId>tinystruct</artifactId>
24-
<version>1.7.3</version>
24+
<version>1.7.4</version>
2525
<classifier>jar-with-dependencies</classifier> <!-- Optional -->
2626
</dependency>
2727
```
@@ -77,7 +77,7 @@ Execute in CLI mode
7777
$ bin/dispatcher --version
7878

7979
_/ ' _ _/ _ _ _/
80-
/ / /) (/ _) / / (/ ( / 1.7.3
80+
/ / /) (/ _) / / (/ ( / 1.7.4
8181
/
8282
```
8383
```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.3"
20+
VERSION="1.7.4"
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.3"
22+
set "VERSION=1.7.4"
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
@@ -10,7 +10,7 @@ $GRAALVM_HOME/bin/native-image -H:ConfigurationFileDirectories=/Volumes/Untitled
1010
--initialize-at-run-time=io.netty.util.AbstractReferenceCounted \
1111
--trace-class-initialization=org.slf4j.LoggerFactory \
1212
--add-opens=java.base/jdk.internal.misc=ALL-UNNAMED \
13-
-cp ./target/tinystruct-1.7.3.jar \
13+
-cp ./target/tinystruct-1.7.4.jar \
1414
-H:Name=dispatcher-native \
1515
-H:Class=org.tinystruct.system.Dispatcher \
1616
-H:+ReportExceptionStackTraces \

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.3</version>
7+
<version>1.7.4</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
@@ -23,7 +23,7 @@
2323
import java.util.concurrent.ConcurrentHashMap;
2424

2525
public final class ApplicationManager {
26-
public static final String VERSION = "1.7.3";
26+
public static final String VERSION = "1.7.4";
2727
private static final ConcurrentHashMap<String, Application> applications = new ConcurrentHashMap<>();
2828
private static final ActionRegistry ROUTE_REGISTRY_INSTANCE = ActionRegistry.getInstance();
2929
private static Configuration<String> settings;

0 commit comments

Comments
 (0)