Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ TODO
- Why two arguments for bestMessage and bestPath for Result? The path should be in the message.
- Create Result inside async traceroute, not outside.

## [0.7.0] - 2025-05-04

### Fixed

- Fixed mangled output with mode SHOW_SCMP_ONLY
Expand Down Expand Up @@ -143,7 +145,8 @@ TODO

- Nothing

[Unreleased]: https://github.com/netsec-ethz/scion-java-multiping/compare/v0.6.1...HEAD
[Unreleased]: https://github.com/netsec-ethz/scion-java-multiping/compare/v0.7.0...HEAD
[0.7.0]: https://github.com/netsec-ethz/scion-java-multiping/compare/v0.6.1...v0.7.0
[0.6.1]: 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
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.1/scion-multiping-0.6.1-executable.jar).
the [GitHub Releases section](https://github.com/netsec-ethz/scion-java-multiping/releases/download/v0.7.0/scion-multiping-0.7.0-executable.jar).
It can be executed with:

```
java -jar scion-multiping-0.6.1-executable.jar [tool-command]
java -jar scion-multiping-0.7.0-executable.jar [tool-command]
```

Some tools require configuration files, see below in the tool description sections.
Expand All @@ -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.1-executable.jar --help
java -jar scion-multiping-0.7.0-executable.jar --help
```


Expand Down Expand Up @@ -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.1-executable.jar ping-repeat
java -jar scion-multiping-0.7.0-executable.jar ping-repeat
```

## Output
Expand Down Expand Up @@ -167,5 +167,5 @@ following property (
the example works only for `ethz.ch`):

```
java -Dorg.scion.dnsSearchDomains=ethz.ch. -jar scion-multiping-0.6.1-executable.jar
java -Dorg.scion.dnsSearchDomains=ethz.ch. -jar scion-multiping-0.7.0-executable.jar
```
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>org.scion</groupId>
<artifactId>scion-multiping</artifactId>
<version>0.6.2-SNAPSHOT</version>
<version>0.7.0</version>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
Loading