From db23c3cee7fa42bbd61bfbe7db89ccc9c9ad56e9 Mon Sep 17 00:00:00 2001 From: Peter Winckles Date: Sat, 22 Nov 2025 14:38:50 -0600 Subject: [PATCH 1/2] v2.2.3 --- CHANGELOG.md | 9 ++++++++- README.md | 4 ++-- ocfl-java-api/pom.xml | 4 ++-- ocfl-java-aws/pom.xml | 6 +++--- ocfl-java-core/pom.xml | 6 +++--- ocfl-java-itest/pom.xml | 8 ++++---- pom.xml | 2 +- 7 files changed, 23 insertions(+), 16 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3cef7eab..2975f4f6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ ## [Unreleased] - ReleaseDate +## [2.2.3] - 2025-11-22 + +### Changed + +- Updated dependencies + ## [2.2.2] - 2025-02-15 ### Changed @@ -291,7 +297,8 @@ DROP TABLE ocfl_object_lock; This is a preliminary release of ocfl-java. All major functionality is in place. However, there will be a few breaking configuration changes prior to the v1.0.0 release, specifically in regards to configuring storage layouts. -[Unreleased]: https://github.com/ocfl/ocfl-java/compare/v2.2.2...HEAD +[Unreleased]: https://github.com/ocfl/ocfl-java/compare/v2.2.3...HEAD +[2.2.3]: https://github.com/ocfl/ocfl-java/compare/v2.2.2...v2.2.3 [2.2.2]: https://github.com/ocfl/ocfl-java/compare/v2.2.1...v2.2.2 [2.2.1]: https://github.com/ocfl/ocfl-java/compare/v2.2.0...v2.2.1 [2.2.0]: https://github.com/ocfl/ocfl-java/compare/v2.1.0...v2.2.0 diff --git a/README.md b/README.md index 1be1d277..562239e3 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ Add the following to your project's POM to pull in the library: io.ocfl ocfl-java-core - 2.2.2 + 2.2.3 ``` @@ -30,7 +30,7 @@ If you want S3 support, you must additionally add the following dependency: io.ocfl ocfl-java-aws - 2.2.2 + 2.2.3 ``` diff --git a/ocfl-java-api/pom.xml b/ocfl-java-api/pom.xml index 723adc4d..5f5471cb 100644 --- a/ocfl-java-api/pom.xml +++ b/ocfl-java-api/pom.xml @@ -31,12 +31,12 @@ io.ocfl ocfl-java-parent - 2.2.3-SNAPSHOT + 2.2.3 ../pom.xml ocfl-java-api - 2.2.3-SNAPSHOT + 2.2.3 OCFL Java API Java API for interacting with objects stored in OCFL. diff --git a/ocfl-java-aws/pom.xml b/ocfl-java-aws/pom.xml index c3bb5247..61b7cf01 100644 --- a/ocfl-java-aws/pom.xml +++ b/ocfl-java-aws/pom.xml @@ -31,12 +31,12 @@ io.ocfl ocfl-java-parent - 2.2.3-SNAPSHOT + 2.2.3 ../pom.xml ocfl-java-aws - 2.2.3-SNAPSHOT + 2.2.3 OCFL Java AWS Java OCFL implementation that writes to S3. @@ -58,7 +58,7 @@ io.ocfl ocfl-java-core - 2.2.3-SNAPSHOT + 2.2.3 diff --git a/ocfl-java-core/pom.xml b/ocfl-java-core/pom.xml index ea0fcf23..06491047 100644 --- a/ocfl-java-core/pom.xml +++ b/ocfl-java-core/pom.xml @@ -31,12 +31,12 @@ io.ocfl ocfl-java-parent - 2.2.3-SNAPSHOT + 2.2.3 ../pom.xml ocfl-java-core - 2.2.3-SNAPSHOT + 2.2.3 OCFL Java Core Core Java OCFL implementation code. @@ -51,7 +51,7 @@ io.ocfl ocfl-java-api - 2.2.3-SNAPSHOT + 2.2.3 diff --git a/ocfl-java-itest/pom.xml b/ocfl-java-itest/pom.xml index 1cb3c80f..acad0a23 100644 --- a/ocfl-java-itest/pom.xml +++ b/ocfl-java-itest/pom.xml @@ -31,12 +31,12 @@ io.ocfl ocfl-java-parent - 2.2.3-SNAPSHOT + 2.2.3 ../pom.xml ocfl-java-itest - 2.2.3-SNAPSHOT + 2.2.3 OCFL Java Integration Tests Integration tests for the OCFL Java library. @@ -57,12 +57,12 @@ io.ocfl ocfl-java-core - 2.2.3-SNAPSHOT + 2.2.3 io.ocfl ocfl-java-aws - 2.2.3-SNAPSHOT + 2.2.3 diff --git a/pom.xml b/pom.xml index c6404e5d..fbd9dd92 100644 --- a/pom.xml +++ b/pom.xml @@ -31,7 +31,7 @@ io.ocfl ocfl-java-parent - 2.2.3-SNAPSHOT + 2.2.3 pom OCFL Java Parent POM From d1edd4997861ab8b20178499c07d0418cb46788d Mon Sep 17 00:00:00 2001 From: Peter Winckles Date: Sat, 22 Nov 2025 14:39:07 -0600 Subject: [PATCH 2/2] back to snapshot --- ocfl-java-api/pom.xml | 4 ++-- ocfl-java-aws/pom.xml | 6 +++--- ocfl-java-core/pom.xml | 6 +++--- ocfl-java-itest/pom.xml | 8 ++++---- pom.xml | 2 +- 5 files changed, 13 insertions(+), 13 deletions(-) diff --git a/ocfl-java-api/pom.xml b/ocfl-java-api/pom.xml index 5f5471cb..3d13cdc1 100644 --- a/ocfl-java-api/pom.xml +++ b/ocfl-java-api/pom.xml @@ -31,12 +31,12 @@ io.ocfl ocfl-java-parent - 2.2.3 + 2.2.4-SNAPSHOT ../pom.xml ocfl-java-api - 2.2.3 + 2.2.4-SNAPSHOT OCFL Java API Java API for interacting with objects stored in OCFL. diff --git a/ocfl-java-aws/pom.xml b/ocfl-java-aws/pom.xml index 61b7cf01..81b1d76e 100644 --- a/ocfl-java-aws/pom.xml +++ b/ocfl-java-aws/pom.xml @@ -31,12 +31,12 @@ io.ocfl ocfl-java-parent - 2.2.3 + 2.2.4-SNAPSHOT ../pom.xml ocfl-java-aws - 2.2.3 + 2.2.4-SNAPSHOT OCFL Java AWS Java OCFL implementation that writes to S3. @@ -58,7 +58,7 @@ io.ocfl ocfl-java-core - 2.2.3 + 2.2.4-SNAPSHOT diff --git a/ocfl-java-core/pom.xml b/ocfl-java-core/pom.xml index 06491047..480fa85b 100644 --- a/ocfl-java-core/pom.xml +++ b/ocfl-java-core/pom.xml @@ -31,12 +31,12 @@ io.ocfl ocfl-java-parent - 2.2.3 + 2.2.4-SNAPSHOT ../pom.xml ocfl-java-core - 2.2.3 + 2.2.4-SNAPSHOT OCFL Java Core Core Java OCFL implementation code. @@ -51,7 +51,7 @@ io.ocfl ocfl-java-api - 2.2.3 + 2.2.4-SNAPSHOT diff --git a/ocfl-java-itest/pom.xml b/ocfl-java-itest/pom.xml index acad0a23..2175beb2 100644 --- a/ocfl-java-itest/pom.xml +++ b/ocfl-java-itest/pom.xml @@ -31,12 +31,12 @@ io.ocfl ocfl-java-parent - 2.2.3 + 2.2.4-SNAPSHOT ../pom.xml ocfl-java-itest - 2.2.3 + 2.2.4-SNAPSHOT OCFL Java Integration Tests Integration tests for the OCFL Java library. @@ -57,12 +57,12 @@ io.ocfl ocfl-java-core - 2.2.3 + 2.2.4-SNAPSHOT io.ocfl ocfl-java-aws - 2.2.3 + 2.2.4-SNAPSHOT diff --git a/pom.xml b/pom.xml index fbd9dd92..5447c33d 100644 --- a/pom.xml +++ b/pom.xml @@ -31,7 +31,7 @@ io.ocfl ocfl-java-parent - 2.2.3 + 2.2.4-SNAPSHOT pom OCFL Java Parent POM