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

Skip to content

Commit 3bbccf7

Browse files
committed
Update the version to be 1.6.8
1 parent 0b3b5ee commit 3bbccf7

File tree

7 files changed

+11
-9
lines changed

7 files changed

+11
-9
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Installation and Getting Started
1515
<dependency>
1616
<groupId>org.tinystruct</groupId>
1717
<artifactId>tinystruct</artifactId>
18-
<version>1.6.7</version>
18+
<version>1.6.8</version>
1919
<classifier>jar-with-dependencies</classifier>
2020
</dependency>
2121
```
@@ -71,7 +71,7 @@ Execute in CLI mode
7171
$ bin/dispatcher --version
7272

7373
_/ ' _ _/ _ _ _/
74-
/ / /) (/ _) / / (/ ( / 1.6.7
74+
/ / /) (/ _) / / (/ ( / 1.6.8
7575
/
7676
```
7777
```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.6.7"
20+
VERSION="1.6.8"
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.6.7"
22+
set "VERSION=1.6.8"
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.6.7.jar \
13+
-cp ./target/tinystruct-1.6.8.jar \
1414
-H:Name=dispatcher-native \
1515
-H:Class=org.tinystruct.system.Dispatcher \
1616
-H:+ReportExceptionStackTraces \

pom.xml

Lines changed: 3 additions & 3 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.6.7</version>
7+
<version>1.6.8</version>
88
<name>tinystruct framework</name>
99
<description>A lightweight java framework designed for building efficient and scalable applications. Supports both
1010
command-line tools and APIs, enabling developers to create robust solutions with ease.
@@ -99,7 +99,7 @@
9999
<dependency>
100100
<groupId>io.netty</groupId>
101101
<artifactId>netty-tcnative</artifactId>
102-
<version>2.0.71.Final</version>
102+
<version>2.0.72.Final</version>
103103
<classifier>linux-x86_64</classifier>
104104
<optional>true</optional>
105105
</dependency>
@@ -232,7 +232,7 @@
232232
<sqlite.version>3.49.1.0</sqlite.version>
233233
<h2.version>2.3.232</h2.version>
234234
<netty.version>4.2.1.Final</netty.version>
235-
<mockito.version>5.17.0</mockito.version>
235+
<mockito.version>5.18.0</mockito.version>
236236
<nashorn.version>15.6</nashorn.version>
237237
<tomcat.embed.version>10.1.40</tomcat.embed.version>
238238
<zxing.version>3.5.3</zxing.version>

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.6.7";
26+
public static final String VERSION = "1.6.8";
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;

src/main/resources/application.properties

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ smtp.auth.pwd=
3737

3838
#logging.properties
3939
logging.override = !TRUE
40+
logging.level=ERROR
41+
logging.enabled=FALSE
4042
handlers = java.util.logging.ConsoleHandler
4143

4244
############################################################

0 commit comments

Comments
 (0)