Updated version from 3.16 to 3.17

This commit is contained in:
nathan 2018-11-03 21:30:08 +01:00
parent edafbf32e1
commit 3f88b66872
3 changed files with 4 additions and 4 deletions

View File

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

View File

@ -81,7 +81,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.16' project.version = '3.17'
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

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