Skip to content

Commit 063c767

Browse files
jderegclaude
andcommitted
Release 4.90.0
- Update version to 4.90.0 - Update README Maven/Gradle snippets with actual version - Update changelog with release date Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent b5f094f commit 063c767

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

README.md

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

601601
```xml
602-
<plugin id="com.cedarsoftware.java-util" version="LATEST_VERSION"/>
602+
<plugin id="com.cedarsoftware.java-util" version="4.90.0"/>
603603
```
604604

605605
Both of these features ensure that our library can be seamlessly integrated into modular Java applications, providing robust dependency management and encapsulation.
@@ -612,20 +612,18 @@ To include in your project:
612612

613613
##### Gradle
614614
```groovy
615-
implementation 'com.cedarsoftware:java-util:LATEST_VERSION'
615+
implementation 'com.cedarsoftware:java-util:4.90.0'
616616
```
617617

618618
##### Maven
619619
```xml
620620
<dependency>
621621
<groupId>com.cedarsoftware</groupId>
622622
<artifactId>java-util</artifactId>
623-
<version>LATEST_VERSION</version>
623+
<version>4.90.0</version>
624624
</dependency>
625625
```
626626

627-
> Replace `LATEST_VERSION` with the version shown in the badge above.
628-
629627
### 🚀 Framework Integration Examples
630628

631629
For comprehensive framework integration examples including Spring, Jakarta EE, Spring Boot Auto-Configuration, Microservices, Testing, and Performance Monitoring, see **[frameworks.md](frameworks.md)**.

changelog.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
### Revision History
22

3-
#### 4.89.0 - 2026-01-31
3+
#### 4.91.0 (Unreleased)
4+
5+
#### 4.90.0 - 2026-01-31
46
* **PERFORMANCE**: `FastReader.getLastSnippet()` now returns bounded 200-char context
57
* Previously could return 0 to 8192 characters depending on buffer position
68
* Now consistently returns up to the last 200 characters read for useful error context

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<groupId>com.cedarsoftware</groupId>
66
<artifactId>java-util</artifactId>
77
<packaging>bundle</packaging>
8-
<version>4.89.0</version>
8+
<version>4.90.0</version>
99
<description>Java Utilities</description>
1010
<url>https://github.com/jdereg/java-util</url>
1111

0 commit comments

Comments
 (0)