Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## [Unreleased] - ReleaseDate

## [2.2.3] - 2025-11-22

### Changed

- Updated dependencies

## [2.2.2] - 2025-02-15

### Changed
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Add the following to your project's POM to pull in the library:
<dependency>
<groupId>io.ocfl</groupId>
<artifactId>ocfl-java-core</artifactId>
<version>2.2.2</version>
<version>2.2.3</version>
</dependency>
```

Expand All @@ -30,7 +30,7 @@ If you want S3 support, you must additionally add the following dependency:
<dependency>
<groupId>io.ocfl</groupId>
<artifactId>ocfl-java-aws</artifactId>
<version>2.2.2</version>
<version>2.2.3</version>
</dependency>
```

Expand Down
4 changes: 2 additions & 2 deletions ocfl-java-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@
<parent>
<groupId>io.ocfl</groupId>
<artifactId>ocfl-java-parent</artifactId>
<version>2.2.3-SNAPSHOT</version>
<version>2.2.4-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>ocfl-java-api</artifactId>
<version>2.2.3-SNAPSHOT</version>
<version>2.2.4-SNAPSHOT</version>

<name>OCFL Java API</name>
<description>Java API for interacting with objects stored in OCFL.</description>
Expand Down
6 changes: 3 additions & 3 deletions ocfl-java-aws/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@
<parent>
<groupId>io.ocfl</groupId>
<artifactId>ocfl-java-parent</artifactId>
<version>2.2.3-SNAPSHOT</version>
<version>2.2.4-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>ocfl-java-aws</artifactId>
<version>2.2.3-SNAPSHOT</version>
<version>2.2.4-SNAPSHOT</version>

<name>OCFL Java AWS</name>
<description>Java OCFL implementation that writes to S3.</description>
Expand All @@ -58,7 +58,7 @@
<dependency>
<groupId>io.ocfl</groupId>
<artifactId>ocfl-java-core</artifactId>
<version>2.2.3-SNAPSHOT</version>
<version>2.2.4-SNAPSHOT</version>
</dependency>

<!-- AWS -->
Expand Down
6 changes: 3 additions & 3 deletions ocfl-java-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@
<parent>
<groupId>io.ocfl</groupId>
<artifactId>ocfl-java-parent</artifactId>
<version>2.2.3-SNAPSHOT</version>
<version>2.2.4-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>ocfl-java-core</artifactId>
<version>2.2.3-SNAPSHOT</version>
<version>2.2.4-SNAPSHOT</version>

<name>OCFL Java Core</name>
<description>Core Java OCFL implementation code.</description>
Expand All @@ -51,7 +51,7 @@
<dependency>
<groupId>io.ocfl</groupId>
<artifactId>ocfl-java-api</artifactId>
<version>2.2.3-SNAPSHOT</version>
<version>2.2.4-SNAPSHOT</version>
</dependency>

<!-- JSON -->
Expand Down
8 changes: 4 additions & 4 deletions ocfl-java-itest/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@
<parent>
<groupId>io.ocfl</groupId>
<artifactId>ocfl-java-parent</artifactId>
<version>2.2.3-SNAPSHOT</version>
<version>2.2.4-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>ocfl-java-itest</artifactId>
<version>2.2.3-SNAPSHOT</version>
<version>2.2.4-SNAPSHOT</version>

<name>OCFL Java Integration Tests</name>
<description>Integration tests for the OCFL Java library.</description>
Expand All @@ -57,12 +57,12 @@
<dependency>
<groupId>io.ocfl</groupId>
<artifactId>ocfl-java-core</artifactId>
<version>2.2.3-SNAPSHOT</version>
<version>2.2.4-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>io.ocfl</groupId>
<artifactId>ocfl-java-aws</artifactId>
<version>2.2.3-SNAPSHOT</version>
<version>2.2.4-SNAPSHOT</version>
</dependency>

<!-- Test -->
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

<groupId>io.ocfl</groupId>
<artifactId>ocfl-java-parent</artifactId>
<version>2.2.3-SNAPSHOT</version>
<version>2.2.4-SNAPSHOT</version>
<packaging>pom</packaging>

<name>OCFL Java Parent POM</name>
Expand Down