Reputation: 10346
I'm reading the API for StringUtils, and it refers to the method truncate, since API 3.5. But, the latest version is 3.4. according to the apache commons site. I don't even see a 3.5 development branch on their git or in maven central. What is the latest version?
Upvotes: 0
Views: 914
Reputation: 321
3.5 Should be the latest now, last published back in October 2016.
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.5</version>
</dependency>
Upvotes: 1
Reputation: 17867
As of time of this answer, 3.4 is the latest stable version. Version 3.5 is actually 3.5-SNAPSHOT. You can see that indicated in top right of the website, and the javadoc is generated off the source tree. You can see that master branch is currently set to 3.5-SNAPSHOT here:
Upvotes: 1