From b21e90d5483151ff945bdbd1116efd0bf724f830 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tilmann=20Z=C3=A4schke?= Date: Mon, 15 Dec 2025 15:59:15 +0100 Subject: [PATCH 1/3] release 0.6.1 --- CHANGELOG.md | 10 +++++++++- pom.xml | 6 +++--- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 35b80bf..12dc76b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,13 @@ TODO - Use \t in summary output - Investigate spurious 0-0:0 ASes in PingAll output +## [0.6.1] - 2025-12-12 + +### Changed + +- Bump JPAN to 0.6.1 + [#20](https://github.com/netsec-ethz/scion-java-multiping/pull/20) + ## [0.6.0] - 2025-12-12 ### Added @@ -127,7 +134,8 @@ TODO - Nothing -[Unreleased]: https://github.com/netsec-ethz/scion-java-multiping/compare/v0.6.0...HEAD +[Unreleased]: https://github.com/netsec-ethz/scion-java-multiping/compare/v0.6.1...HEAD +[0.6.0]: https://github.com/netsec-ethz/scion-java-multiping/compare/v0.6.0...v0.6.1 [0.6.0]: https://github.com/netsec-ethz/scion-java-multiping/compare/v0.5.0...v0.6.0 [0.5.0]: https://github.com/netsec-ethz/scion-java-multiping/compare/v0.4.0...v0.5.0 [0.4.0]: https://github.com/netsec-ethz/scion-java-multiping/compare/v0.3.0...v0.4.0 diff --git a/pom.xml b/pom.xml index 5e5e558..3d0e51a 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ org.scion scion-multiping - 0.6.1-SNAPSHOT + 0.6.2-SNAPSHOT UTF-8 @@ -83,7 +83,7 @@ org.scion jpan - 0.6.0 + 0.6.1 @@ -319,4 +319,4 @@ - + \ No newline at end of file From 3b7fe42df6cfb35c3d65aad7d63ad7ab29491277 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tilmann=20Z=C3=A4schke?= Date: Mon, 15 Dec 2025 16:05:16 +0100 Subject: [PATCH 2/3] release 0.6.1 --- .github/workflows/build.yml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c1f9dfd..a5ff476 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 1 - name: Check Format @@ -27,9 +27,9 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Set up JDK - uses: actions/setup-java@v4 + uses: actions/setup-java@v5 with: java-version: 21 distribution: 'temurin' @@ -39,7 +39,7 @@ jobs: timeout-minutes: ${{ fromJSON(env.time) }} run: mvn -B test - name: Upload coverage reports to Codecov - uses: codecov/codecov-action@v4 + uses: codecov/codecov-action@v5 env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} @@ -48,12 +48,12 @@ jobs: strategy: matrix: # run different builds with the listed java versions - java: [ 8, 21 ] + java: [ 8, 21, 25 ] name: "build-ubuntu Java ${{ matrix.java }}" steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Set up JDK - uses: actions/setup-java@v4 + uses: actions/setup-java@v5 with: java-version: ${{ matrix.java }} distribution: 'temurin' @@ -65,9 +65,9 @@ jobs: build-windows: runs-on: windows-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Set up JDK - uses: actions/setup-java@v4 + uses: actions/setup-java@v5 with: java-version: 8 distribution: 'temurin' @@ -79,9 +79,9 @@ jobs: build-macos: runs-on: macos-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Set up JDK - uses: actions/setup-java@v4 + uses: actions/setup-java@v5 with: java-version: 17 distribution: 'temurin' From 8f3895cc56be1317a58d37ba579334745cf39343 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tilmann=20Z=C3=A4schke?= Date: Mon, 15 Dec 2025 16:08:16 +0100 Subject: [PATCH 3/3] release 0.6.1 --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 2ccc043..3d509b2 100644 --- a/README.md +++ b/README.md @@ -13,11 +13,11 @@ MultiPing provides several tools: ## Execution All tools can be run from the executable jar file which is available in -the [GitHub Releases section](https://github.com/netsec-ethz/scion-java-multiping/releases/download/v0.6.0/scion-multiping-0.6.0-executable.jar). +the [GitHub Releases section](https://github.com/netsec-ethz/scion-java-multiping/releases/download/v0.6.1/scion-multiping-0.6.1-executable.jar). It can be executed with: ``` -java -jar scion-multiping-0.6.0-executable.jar [tool-command] +java -jar scion-multiping-0.6.1-executable.jar [tool-command] ``` Some tools require configuration files, see below in the tool description sections. @@ -28,7 +28,7 @@ See also the troubleshooting section below in case of issues. To get command line help, the tool can be executed with: ``` -java -jar scion-multiping-0.6.0-executable.jar --help +java -jar scion-multiping-0.6.1-executable.jar --help ``` @@ -113,7 +113,7 @@ request to `64-2:0:4c,192.168.0.1`. The tool can be executed with: ``` -java -jar scion-multiping-0.6.0-executable.jar ping-repeat +java -jar scion-multiping-0.6.1-executable.jar ping-repeat ``` ## Output @@ -167,5 +167,5 @@ following property ( the example works only for `ethz.ch`): ``` -java -Dorg.scion.dnsSearchDomains=ethz.ch. -jar scion-multiping-.0-executable.jar +java -Dorg.scion.dnsSearchDomains=ethz.ch. -jar scion-multiping-0.6.1-executable.jar ```