Updated version from 2.11 to 2.12

This commit is contained in:
nathan 2019-06-14 14:04:06 +02:00
parent 5cb84d9c13
commit acf9bde399
2 changed files with 2 additions and 2 deletions

View File

@ -46,7 +46,7 @@ object Extras {
// set for the project
const val description = "Fast, lightweight, and compatible blocking/non-blocking/soft-reference object pool for Java 6+"
const val group = "com.dorkbox"
const val version = "2.11"
const val version = "2.12"
// set as project.ext
const val name = "ObjectPool"

View File

@ -30,7 +30,7 @@ class ObjectPool<T> implements Pool<T> {
*/
public static
String getVersion() {
return "2.11";
return "2.12";
}