Version 3.0.1
This commit is contained in:
parent
5bb2042fd7
commit
5ec7940f7b
|
|
@ -6,12 +6,14 @@ This project provides a Java client to manipulate Mikrotik routers using the rem
|
||||||
|
|
||||||
## Versions
|
## Versions
|
||||||
|
|
||||||
**The current stable version is 3.0**
|
**The current stable version is 3.0.1**
|
||||||
|
|
||||||
This library uses [semantic versioning](http://semver.org/)
|
This library uses [semantic versioning](http://semver.org/)
|
||||||
|
|
||||||
### Changes in version 3.0:
|
### Changes in version 3.0:
|
||||||
|
|
||||||
|
Version 3.0.1 fixes a harmless but annoying stack trace bug (#34).
|
||||||
|
|
||||||
Version 3.0 addresses the problems the API had around TLS encryption. The way secure connections are implemented is changed so that the user has complete control over the creation of TLS sockets. To this end:
|
Version 3.0 addresses the problems the API had around TLS encryption. The way secure connections are implemented is changed so that the user has complete control over the creation of TLS sockets. To this end:
|
||||||
* A new method, `connect(SocketFactory fact, String host, int port, int timeout)`, was added to allow for better user control over sockets and especially encryption.
|
* A new method, `connect(SocketFactory fact, String host, int port, int timeout)`, was added to allow for better user control over sockets and especially encryption.
|
||||||
* The `connectTLS()` API methods were removed.
|
* The `connectTLS()` API methods were removed.
|
||||||
|
|
|
||||||
2
pom.xml
2
pom.xml
|
|
@ -9,7 +9,7 @@
|
||||||
|
|
||||||
<groupId>me.legrange</groupId>
|
<groupId>me.legrange</groupId>
|
||||||
<artifactId>mikrotik</artifactId>
|
<artifactId>mikrotik</artifactId>
|
||||||
<version>3.0</version>
|
<version>3.0.1</version>
|
||||||
<packaging>jar</packaging>
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
<name>Mikrotik API Java Client Library</name>
|
<name>Mikrotik API Java Client Library</name>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue