Skip to content

Commit

Permalink
v2.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
pwinckles committed Jul 23, 2024
1 parent 3540933 commit f81c18e
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 16 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## [Unreleased] - ReleaseDate

## [2.2.1] - 2024-07-22

### Added

- It is now possible to retrieve part of a file using `OcflObjectVersionFile.getRange()`. https://github.com/OCFL/ocfl-java/issues/118
Expand Down Expand Up @@ -282,7 +284,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.0...HEAD
[Unreleased]: https://github.com/ocfl/ocfl-java/compare/v2.2.1...HEAD
[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
[2.1.0]: https://github.com/ocfl/ocfl-java/compare/v2.0.1...v2.1.0
[2.0.1]: https://github.com/ocfl/ocfl-java/compare/v2.0.0...v2.0.1
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.0</version>
<version>2.2.1</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.0</version>
<version>2.2.1</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.1-SNAPSHOT</version>
<version>2.2.1</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>ocfl-java-api</artifactId>
<version>2.2.1-SNAPSHOT</version>
<version>2.2.1</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.1-SNAPSHOT</version>
<version>2.2.1</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>ocfl-java-aws</artifactId>
<version>2.2.1-SNAPSHOT</version>
<version>2.2.1</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.1-SNAPSHOT</version>
<version>2.2.1</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.1-SNAPSHOT</version>
<version>2.2.1</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>ocfl-java-core</artifactId>
<version>2.2.1-SNAPSHOT</version>
<version>2.2.1</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.1-SNAPSHOT</version>
<version>2.2.1</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.1-SNAPSHOT</version>
<version>2.2.1</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>ocfl-java-itest</artifactId>
<version>2.2.1-SNAPSHOT</version>
<version>2.2.1</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.1-SNAPSHOT</version>
<version>2.2.1</version>
</dependency>
<dependency>
<groupId>io.ocfl</groupId>
<artifactId>ocfl-java-aws</artifactId>
<version>2.2.1-SNAPSHOT</version>
<version>2.2.1</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.1-SNAPSHOT</version>
<version>2.2.1</version>
<packaging>pom</packaging>

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

0 comments on commit f81c18e

Please sign in to comment.