Skip to content

Commit

Permalink
updated change log and readme
Browse files Browse the repository at this point in the history
  • Loading branch information
jdereg committed Apr 6, 2024
1 parent d8417f2 commit feea2cb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ The classes in the`.jar`file are version 52 (`JDK 1.8`).
To include in your project:
##### GradleF
```
implementation 'com.cedarsoftware:java-util:2.4.8'
implementation 'com.cedarsoftware:java-util:2.4.9'
```

##### Maven
```
<dependency>
<groupId>com.cedarsoftware</groupId>
<artifactId>java-util</artifactId>
<version>2.4.8</version>
<version>2.4.9</version>
</dependency>
```
---
Expand Down
3 changes: 3 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
### Revision History
* 2.4.9
* Updated to allow the project to be compiled by versions of JDK > 1.8 yet still generate class file format 52 .class files so that they can be executed on JDK 1.8+ and up.
* Incorporated @AxataDarji GraphComparator changes that reduce cyclomatic code complexity (refactored to smaller methods)
* 2.4.8
* Performance improvement: `DeepEquals.deepHashCode()` - now using `IdentityHashMap()` for cycle (visited) detection.
* Modernization: `UniqueIdGenerator` - updated to use `Lock.lock()` and `Lock.unlock()` instead of `synchronized` keyword.
Expand Down

0 comments on commit feea2cb

Please sign in to comment.