Updated version/readme

This commit is contained in:
nathan 2017-02-01 00:56:04 +01:00
parent 4eb011a7d4
commit a6236241c7
3 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
- Dorkbox ObjectPool - Apache 2.0 License
https://github.com/dorkbox
Copyright 2014, dorkbox, llc
Fast and compatible, blocking/non-blocking/soft-reference object pool for Java 6+
Fast, lightweight, and compatible blocking/non-blocking/soft-reference object pool for Java 6+

View File

@ -44,7 +44,7 @@ Usage:
<dependency>
<groupId>com.dorkbox</groupId>
<artifactId>ObjectPool</artifactId>
<version>2.6</version>
<version>2.7</version>
</dependency>
```

View File

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