Skip to content

Commit 4d438f8

Browse files
committed
Prepare for 4.2.0 release
- Updated changelog with release date: 2025-11-02 - Updated README version references: 4.1.0 → 4.2.0
1 parent ec28526 commit 4d438f8

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -635,7 +635,7 @@ The jar already ships with all necessary OSGi headers and a `module-info.class`.
635635
To add the bundle to an Eclipse feature or any OSGi runtime simply reference it:
636636

637637
```xml
638-
<plugin id="com.cedarsoftware.java-util" version="4.1.0"/>
638+
<plugin id="com.cedarsoftware.java-util" version="4.2.0"/>
639639
```
640640

641641
Both of these features ensure that our library can be seamlessly integrated into modular Java applications, providing robust dependency management and encapsulation.
@@ -646,15 +646,15 @@ To include in your project:
646646

647647
##### Gradle
648648
```groovy
649-
implementation 'com.cedarsoftware:java-util:4.1.0'
649+
implementation 'com.cedarsoftware:java-util:4.2.0'
650650
```
651651

652652
##### Maven
653653
```xml
654654
<dependency>
655655
<groupId>com.cedarsoftware</groupId>
656656
<artifactId>java-util</artifactId>
657-
<version>4.1.0</version>
657+
<version>4.2.0</version>
658658
</dependency>
659659
```
660660

changelog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
### Revision History
2-
#### 4.2.0 (unreleased)
2+
#### 4.2.0 - 2025-11-02
33
> * **FIXED**: `MultiKeyMap` nested Set lookup bug in COLLECTIONS_EXPANDED mode - Fixed size mismatch false negatives when looking up keys containing expanded Collections. In COLLECTIONS_EXPANDED mode, stored keys have expanded size (includes SET_OPEN/SET_CLOSE markers) while lookup keys have un-expanded Collection size. Added skipSizeCheck logic to bypass size comparison for Collection-to-Collection matches in expanded mode, allowing compareCollections() to handle the structural comparison correctly. This fixes lookups failing incorrectly when using nested Sets or Collections as multi-keys.
44
>
55
> * **IMPROVED**: Code quality improvements from comprehensive IntelliJ IDEA inspection analysis (17 fixes across 5 classes):

0 commit comments

Comments
 (0)