Skip to content

Commit

Permalink
updated version numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
jdereg committed Jan 25, 2025
1 parent 3cbe873 commit 0b8bf6c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,15 @@ Both of these features ensure that our library can be seamlessly integrated into
To include in your project:
##### Gradle
```groovy
implementation 'com.cedarsoftware:java-util:3.0.2'
implementation 'com.cedarsoftware:java-util:3.0.3'
```

##### Maven
```xml
<dependency>
<groupId>com.cedarsoftware</groupId>
<artifactId>java-util</artifactId>
<version>3.0.2</version>
<version>3.0.3</version>
</dependency>
```
---
Expand Down
5 changes: 4 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
### Revision History
#### 3.0.3
> * `Date` conversion - Timezone is always specified now, so no risk of system default Timezone being used. Would only use system default timezone if tz not specified, which could only happen if older version sending older format JSON.
> * Conversion enabled that ensures all conversions go from instance, to JSON, and JSON, back to instance, through all conversion types supported. `java-util` uses `json-io` as a test dependency only.
#### 3.0.2
> * Conversion test added that ensures all conversions go from instance, to JSON, and JSON, back to instance, through all conversion types supported. `java-util` uses `json-io` as a test dependency only.
> * Timestamp conversion improvements (better honoring of nanos)
> * `Timestamp` conversion improvements (better honoring of nanos) and Timezone is always specified now, so no risk of system default Timezone being used. Would only use system default timezone if tz not specified, which could only happen if older version sending older format JSON.
#### 3.0.1
> * [ClassUtilities](userguide.md#classutilities) adds
> * `Set<Class<?>> findLowestCommonSupertypes(Class<?> a, Class<?> b)`
Expand Down

0 comments on commit 0b8bf6c

Please sign in to comment.