Skip to content

Commit

Permalink
Merge pull request #989 from marci4/Release1.4.1
Browse files Browse the repository at this point in the history
Release of 1.4.1
  • Loading branch information
marci4 committed Mar 12, 2020
2 parents 1c70962 + d344019 commit eacb4f0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
7 changes: 3 additions & 4 deletions README.markdown
Expand Up @@ -29,7 +29,7 @@ To use maven add this dependency to your pom.xml:
<dependency>
<groupId>org.java-websocket</groupId>
<artifactId>Java-WebSocket</artifactId>
<version>1.4.0</version>
<version>1.4.1</version>
</dependency>
```

Expand All @@ -40,7 +40,7 @@ mavenCentral()
```
Then you can just add the latest version to your build.
```xml
compile "org.java-websocket:Java-WebSocket:1.4.0"
compile "org.java-websocket:Java-WebSocket:1.4.1"
```

#### Logging
Expand Down Expand Up @@ -109,8 +109,7 @@ Minimum Required JDK

`Java-WebSocket` is known to work with:

* Java 1.6 and higher
* Android 4.0 and higher
* Java 1.7 and higher

Other JRE implementations may work as well, but haven't been tested.

Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Expand Up @@ -5,7 +5,7 @@
<groupId>org.java-websocket</groupId>
<artifactId>Java-WebSocket</artifactId>
<packaging>jar</packaging>
<version>1.4.1-SNAPSHOT</version>
<version>1.5.0-SNAPSHOT</version>
<name>Java-WebSocket</name>
<description>A barebones WebSocket client and server implementation written 100% in Java</description>
<url>https://github.com/TooTallNate/Java-WebSocket</url>
Expand Down Expand Up @@ -97,8 +97,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven.compiler.plugin.version}</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<plugin>
Expand Down

0 comments on commit eacb4f0

Please sign in to comment.