From ea9f2cde50fe92e6df5e44c0b21baededfc54bfc Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Fri, 27 Mar 2026 16:29:46 +0200 Subject: Bump version to 1.1.0 --- CLAUDE.md | 6 +++--- README.md | 6 +++--- docs/build-fixes-summary.md | 6 +++--- pom.xml | 2 +- src/main/java/utils/VSVersionInfo.java | 6 +++--- 5 files changed, 13 insertions(+), 13 deletions(-) diff --git a/CLAUDE.md b/CLAUDE.md index bc7dc87..80b08fe 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -18,10 +18,10 @@ export JAVA_HOME=/usr/lib/jvm/java-21-openjdk mvn clean package # Run the application -java -jar target/ds-sim-1.0.1.jar +java -jar target/ds-sim-1.1.0.jar # Quick build and run -mvn clean package && java -jar target/ds-sim-1.0.1.jar +mvn clean package && java -jar target/ds-sim-1.1.0.jar # Clean build artifacts mvn clean @@ -102,4 +102,4 @@ This is a distributed systems simulator built on an **event-driven architecture* - **Main Class**: `simulator.VSMain` - **Simulator Core**: `simulator.VSSimulator` - **Protocol Implementations**: `protocols.implementations.*` -- **Event Registration**: `events.VSRegisteredEvents.init()` \ No newline at end of file +- **Event Registration**: `events.VSRegisteredEvents.init()` diff --git a/README.md b/README.md index 8b1411e..1549091 100644 --- a/README.md +++ b/README.md @@ -100,9 +100,9 @@ cat target/surefire-reports/*.txt After building, you'll find: -- `target/ds-sim-1.0.1.jar` - Executable JAR with all dependencies +- `target/ds-sim-1.1.0.jar` - Executable JAR with all dependencies - `target/classes/` - Compiled class files -- `target/original-ds-sim-1.0.1.jar` - JAR without dependencies +- `target/original-ds-sim-1.1.0.jar` - JAR without dependencies ## Running the Application @@ -139,7 +139,7 @@ mvn compile mvn test # 4. Build and test the application -mvn package && java -jar target/ds-sim-1.0.1.jar +mvn package && java -jar target/ds-sim-1.1.0.jar # 5. Clean up when done mvn clean diff --git a/docs/build-fixes-summary.md b/docs/build-fixes-summary.md index a05e2f7..82e14e8 100644 --- a/docs/build-fixes-summary.md +++ b/docs/build-fixes-summary.md @@ -48,8 +48,8 @@ BUILD SUCCESS ``` ## Created Files -- `target/ds-sim-1.0.1.jar` (3.9 MB) - Shaded JAR with all dependencies -- `target/original-ds-sim-1.0.1.jar` (771 KB) - Original JAR without dependencies +- `target/ds-sim-1.1.0.jar` (3.9 MB) - Shaded JAR with all dependencies +- `target/original-ds-sim-1.1.0.jar` (771 KB) - Original JAR without dependencies ## Running Tests @@ -71,4 +71,4 @@ mvn test -Dtest="**/testing/**/*Test" ## Notes - Protocol simulation tests that require GUI components are excluded from default test runs - These tests can still be run manually in a GUI environment -- The build is now suitable for CI/CD pipelines \ No newline at end of file +- The build is now suitable for CI/CD pipelines diff --git a/pom.xml b/pom.xml index 27069a6..416d225 100644 --- a/pom.xml +++ b/pom.xml @@ -7,7 +7,7 @@ org.ds-sim ds-sim - 1.0.1 + 1.1.0 DS-Sim Distributed Systems Simulator - A modern Java-based simulator for distributed systems diff --git a/src/main/java/utils/VSVersionInfo.java b/src/main/java/utils/VSVersionInfo.java index ad4df73..7ff237d 100644 --- a/src/main/java/utils/VSVersionInfo.java +++ b/src/main/java/utils/VSVersionInfo.java @@ -52,7 +52,7 @@ public final class VSVersionInfo { /** * Gets the application version from Maven project version. * - * @return the version string (e.g., "1.0.1") + * @return the version string (e.g., "1.1.0") */ public static String getVersion() { if (!loaded) { @@ -100,9 +100,9 @@ public final class VSVersionInfo { /** * Gets the full version string including name and version. * - * @return formatted version string (e.g., "Distributed Systems Simulator 1.0.1") + * @return formatted version string (e.g., "Distributed Systems Simulator 1.1.0") */ public static String getFullVersionString() { return String.format("Distributed Systems Simulator %s", getVersion()); } -} \ No newline at end of file +} -- cgit v1.2.3