Skip to content

Commit

Permalink
Updated to 2.6.0 for pom, readme, and changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
jdereg committed Apr 18, 2024
1 parent cb14296 commit 6b33d32
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -15,15 +15,15 @@ The '.jar' file classes are version 52 (`JDK 1.8`).
To include in your project:
##### Gradle
```
implementation 'com.cedarsoftware:java-util:2.5.0'
implementation 'com.cedarsoftware:java-util:2.6.0'
```

##### Maven
```
<dependency>
<groupId>com.cedarsoftware</groupId>
<artifactId>java-util</artifactId>
<version>2.5.0</version>
<version>2.6.0</version>
</dependency>
```
---
Expand Down
4 changes: 4 additions & 0 deletions changelog.md
@@ -1,4 +1,8 @@
### Revision History
* 2.6.0
* Performance improvement: `Converter` instance creation is faster due to the code no longer copying the static default table. Overrides are kept in separate variable.
* New capability added: `MathUtilities.parseToMinimalNumericType()` which will parse a String number into a Long, BigInteger, Double, or BigDecimal, choosing the "smallest" datatype to represent the number without loss of precision.
* New conversions added to convert from `Map` to `StringBuilder` and `StringBuffer.`
* 2.5.0
* pom.xml file updated to support both OSGi Bundle and JPMS Modules.
* module-info.class resides in the root of the .jar but it is not referenced.
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -5,7 +5,7 @@
<groupId>com.cedarsoftware</groupId>
<artifactId>java-util</artifactId>
<packaging>bundle</packaging>
<version>2.6.0-SNAPSHOT</version>
<version>2.6.0</version>
<description>Java Utilities</description>
<url>https://github.com/jdereg/java-util</url>

Expand Down

0 comments on commit 6b33d32

Please sign in to comment.