Updated version from 3.15 to 3.16

This commit is contained in:
nathan 2018-08-28 01:55:34 +02:00
parent 0625a1f298
commit f92717cdf5
3 changed files with 4 additions and 4 deletions

View File

@ -277,7 +277,7 @@ Maven Info
<dependency> <dependency>
<groupId>com.dorkbox</groupId> <groupId>com.dorkbox</groupId>
<artifactId>SystemTray</artifactId> <artifactId>SystemTray</artifactId>
<version>3.15</version> <version>3.16</version>
</dependency> </dependency>
</dependencies> </dependencies>
```` ````
@ -287,7 +287,7 @@ Gradle Info
```` ````
dependencies { dependencies {
... ...
compile 'com.dorkbox:SystemTray:3.15' compile 'com.dorkbox:SystemTray:3.16'
} }
```` ````

View File

@ -79,7 +79,7 @@ apply from: '../Utilities/scripts/gradle/utilities.gradle'
project.description = 'Cross-platform SystemTray support for Swing/AWT, GtkStatusIcon, and AppIndicator on Java 6+' project.description = 'Cross-platform SystemTray support for Swing/AWT, GtkStatusIcon, and AppIndicator on Java 6+'
project.group = 'com.dorkbox' project.group = 'com.dorkbox'
project.version = '3.15' project.version = '3.16'
project.ext.name = 'SystemTray' project.ext.name = 'SystemTray'
project.ext.url = 'https://git.dorkbox.com/dorkbox/SystemTray' project.ext.url = 'https://git.dorkbox.com/dorkbox/SystemTray'

View File

@ -1055,7 +1055,7 @@ class SystemTray {
*/ */
public static public static
String getVersion() { String getVersion() {
return "3.15"; return "3.16";
} }
/** /**