Skip to content

Commit be9d393

Browse files
committed
Revert "Release 4.90.0"
This reverts commit 063c767.
1 parent 063c767 commit be9d393

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

README.md

Lines changed: 5 additions & 3 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="4.90.0"/>
602+
<plugin id="com.cedarsoftware.java-util" version="LATEST_VERSION"/>
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,18 +612,20 @@ To include in your project:
612612

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

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

627+
> Replace `LATEST_VERSION` with the version shown in the badge above.
628+
627629
### 🚀 Framework Integration Examples
628630

629631
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: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
### Revision History
22

3-
#### 4.91.0 (Unreleased)
4-
5-
#### 4.90.0 - 2026-01-31
3+
#### 4.89.0 - 2026-01-31
64
* **PERFORMANCE**: `FastReader.getLastSnippet()` now returns bounded 200-char context
75
* Previously could return 0 to 8192 characters depending on buffer position
86
* 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.90.0</version>
8+
<version>4.89.0</version>
99
<description>Java Utilities</description>
1010
<url>https://github.com/jdereg/java-util</url>
1111

0 commit comments

Comments
 (0)