Skip to content

Commit

Permalink
Release 2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hannesbraun committed Oct 20, 2022
1 parent 31e554b commit e3c8136
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
2.2.0 (October 20, 2022)
------------------------------
* Update minimum required Java version to 1.8
* Allow further parsing of unknown command line arguments
* Print the usage example only once instead of for every unknown parameter
* *A bit of internal cleanup*

2.1.4 (February 1, 2021)
------------------------------
* Added `--daemon` option
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ The proxy is developed using Java 1.8.
- Make sure you have [simspark and rcsserver3d](https://gitlab.com/robocup-sim/SimSpark/-/wikis/home) installed and the command `rcssserver3d` is available on your command line.

### Getting the prebuilt bersion
We provide a prebuilt version of magmaProxy. You can download the latest version from the [Releases page](https://github.com/magmaOffenburg/magmaProxy/releases) (e.g. `magmaproxy-2.1.4.zip`). The Zip file contains the JAR file as well as the start script.
We provide a prebuilt version of magmaProxy. You can download the latest version from the [Releases page](https://github.com/magmaOffenburg/magmaProxy/releases) (e.g. `magmaproxy-2.2.0.zip`). The Zip file contains the JAR file as well as the start script.

### Building from source
- Clone the repository: `git clone https://github.com/magmaOffenburg/magmaProxy.git`.
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<groupId>magmaoffenburg</groupId>
<artifactId>magmaproxy</artifactId>
<packaging>jar</packaging>
<version>2.1.4</version>
<version>2.2.0</version>
<name>magmaProxy</name>
<url>https://github.com/magmaOffenburg/magmaProxy</url>

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/magma/tools/proxy/MagmaProxy.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
*/
public class MagmaProxy
{
private static final String PROXY_VERSION = "2.1.4";
private static final String PROXY_VERSION = "2.2.0";

private final SimsparkAgentProxyServer proxy;

Expand Down

0 comments on commit e3c8136

Please sign in to comment.