Skip to content

Commit

Permalink
v2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pwinckles committed Jul 16, 2024
1 parent 49a0f56 commit 3d84f7c
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 17 deletions.
7 changes: 5 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## [Unreleased] - ReleaseDate

## [2.2.0] - 2024-07-15

### Added

- Support of file size based fixity entries: https://github.com/OCFL/ocfl-java/issues/116
Expand Down Expand Up @@ -272,7 +274,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.0.1...HEAD
[Unreleased]: https://github.com/ocfl/ocfl-java/compare/v2.2.0...HEAD
[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
[2.0.0]: https://github.com/ocfl/ocfl-java/compare/v1.5.0...v2.0.0
Expand All @@ -296,4 +299,4 @@ This is a preliminary release of ocfl-java. All major functionality is in place.
[1.0.1]: https://github.com/ocfl/ocfl-java/compare/v1.0.0...v1.0.1
[1.0.0]: https://github.com/ocfl/ocfl-java/compare/v0.2.0...v1.0.0
[0.2.0]: https://github.com/ocfl/ocfl-java/compare/v0.1.0...v0.2.0
[1.0.0]: https://github.com/ocfl/ocfl-java/releases/tag/v0.1.0
[1.0.0]: https://github.com/ocfl/ocfl-java/releases/tag/v0.1.0
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.1.0</version>
<version>2.2.0</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.1.0</version>
<version>2.2.0</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.1.1-SNAPSHOT</version>
<version>2.2.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

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

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

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

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

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

0 comments on commit 3d84f7c

Please sign in to comment.