Skip to content

Commit 02d7c0b

Browse files
tzaeschkeTilmann Zäschke
andauthored
Release 0.5.0 (#19)
* release 0.5.0 --------- Co-authored-by: Tilmann Zäschke <[email protected]>
1 parent 7afa9c9 commit 02d7c0b

File tree

3 files changed

+19
-14
lines changed

3 files changed

+19
-14
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
77

88
## [Unreleased]
99

10+
-- Nothing yet
11+
12+
## [0.5.0] - 2025-09-09
13+
1014
### Added
1115

1216
- Added async traceroute, stop SHIM, and use 30041
@@ -87,7 +91,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
8791

8892
- Nothing
8993

90-
[Unreleased]: https://github.com/netsec-ethz/scion-java-multiping/compare/v0.4.0...HEAD
94+
[Unreleased]: https://github.com/netsec-ethz/scion-java-multiping/compare/v0.5.0...HEAD
95+
[0.5.0]: https://github.com/netsec-ethz/scion-java-multiping/compare/v0.4.0...v0.5.0
9196
[0.4.0]: https://github.com/netsec-ethz/scion-java-multiping/compare/v0.3.0...v0.4.0
9297
[0.3.0]: https://github.com/netsec-ethz/scion-java-multiping/compare/v0.2.0...v0.3.0
9398
[0.2.0]: https://github.com/netsec-ethz/scion-java-multiping/compare/v0.1.0...v0.2.0

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ MultiPing provides several tools:
1313
## Execution
1414

1515
All tools can be run from the executable jar file which is available in
16-
the [GitHub Releases section](https://github.com/netsec-ethz/scion-java-multiping/releases/download/v0.4.0/scion-multiping-0.4.0-executable.jar).
16+
the [GitHub Releases section](https://github.com/netsec-ethz/scion-java-multiping/releases/download/v0.5.0/scion-multiping-0.5.0-executable.jar).
1717
It can be executed with:
1818

1919
```
20-
java -jar scion-multiping-0.4.0-executable.jar [tool-command]
20+
java -jar scion-multiping-0.5.0-executable.jar [tool-command]
2121
```
2222

2323
Some tools require configuration files, see below in the tool description sections.
@@ -99,10 +99,10 @@ request to `64-2:0:4c,192.168.0.1`.
9999

100100
## Execution
101101

102-
THe tool can be executed with:
102+
The tool can be executed with:
103103

104104
```
105-
java -jar scion-multiping-0.4.0-executable.jar ping-repeat
105+
java -jar scion-multiping-0.5.0-executable.jar ping-repeat
106106
```
107107

108108
## Output
@@ -156,5 +156,5 @@ following property (
156156
the example works only for `ethz.ch`):
157157

158158
```
159-
java -Dorg.scion.dnsSearchDomains=ethz.ch. -jar scion-multiping-0.4.0-executable.jar
159+
java -Dorg.scion.dnsSearchDomains=ethz.ch. -jar scion-multiping-0.5.0-executable.jar
160160
```

pom.xml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@
66

77
<groupId>org.scion</groupId>
88
<artifactId>scion-multiping</artifactId>
9-
<version>0.4.1-SNAPSHOT</version>
9+
<version>0.5.1-SNAPSHOT</version>
1010

1111
<properties>
1212
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1313

14-
<scion.slf4j.version>2.0.9</scion.slf4j.version>
14+
<scion.slf4j.version>2.0.16</scion.slf4j.version>
1515
<scion.fmt-maven.version>2.23</scion.fmt-maven.version>
16-
<scion.maven-enforcer-plugin.version>3.3.0</scion.maven-enforcer-plugin.version>
16+
<scion.maven-enforcer-plugin.version>3.5.0</scion.maven-enforcer-plugin.version>
1717
</properties>
1818

1919
<name>SCION Java API Examples</name>
@@ -77,7 +77,7 @@
7777
<dependency>
7878
<groupId>com.google.googlejavaformat</groupId>
7979
<artifactId>google-java-format</artifactId>
80-
<version>1.24.0</version>
80+
<version>1.26.0</version>
8181
</dependency>
8282

8383
<dependency>
@@ -101,15 +101,15 @@
101101
<dependency>
102102
<groupId>com.google.code.gson</groupId>
103103
<artifactId>gson</artifactId>
104-
<version>2.11.0</version>
104+
<version>2.13.1</version>
105105
</dependency>
106106
</dependencies>
107107

108108
<build>
109109
<plugins>
110110
<plugin>
111111
<artifactId>maven-compiler-plugin</artifactId>
112-
<version>3.11.0</version>
112+
<version>3.13.0</version>
113113
<configuration>
114114
<source>1.8</source>
115115
<target>1.8</target>
@@ -118,7 +118,7 @@
118118
<plugin>
119119
<groupId>org.apache.maven.plugins</groupId>
120120
<artifactId>maven-checkstyle-plugin</artifactId>
121-
<version>3.3.0</version>
121+
<version>3.6.0</version>
122122
<executions>
123123
<execution>
124124
<id>validate</id>
@@ -141,7 +141,7 @@
141141
<plugin>
142142
<groupId>org.apache.maven.plugins</groupId>
143143
<artifactId>maven-surefire-plugin</artifactId>
144-
<version>3.2.5</version>
144+
<version>3.5.2</version>
145145
</plugin>
146146
<plugin>
147147
<groupId>org.jacoco</groupId>

0 commit comments

Comments
 (0)