Skip to content

Commit f81c18e

Browse files
committed
v2.2.1
1 parent 3540933 commit f81c18e

File tree

7 files changed

+19
-16
lines changed

7 files changed

+19
-16
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## [Unreleased] - ReleaseDate
44

5+
## [2.2.1] - 2024-07-22
6+
57
### Added
68

79
- It is now possible to retrieve part of a file using `OcflObjectVersionFile.getRange()`. https://github.com/OCFL/ocfl-java/issues/118
@@ -282,7 +284,8 @@ DROP TABLE ocfl_object_lock;
282284

283285
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.
284286

285-
[Unreleased]: https://github.com/ocfl/ocfl-java/compare/v2.2.0...HEAD
287+
[Unreleased]: https://github.com/ocfl/ocfl-java/compare/v2.2.1...HEAD
288+
[2.2.1]: https://github.com/ocfl/ocfl-java/compare/v2.2.0...v2.2.1
286289
[2.2.0]: https://github.com/ocfl/ocfl-java/compare/v2.1.0...v2.2.0
287290
[2.1.0]: https://github.com/ocfl/ocfl-java/compare/v2.0.1...v2.1.0
288291
[2.0.1]: https://github.com/ocfl/ocfl-java/compare/v2.0.0...v2.0.1

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Add the following to your project's POM to pull in the library:
2020
<dependency>
2121
<groupId>io.ocfl</groupId>
2222
<artifactId>ocfl-java-core</artifactId>
23-
<version>2.2.0</version>
23+
<version>2.2.1</version>
2424
</dependency>
2525
```
2626

@@ -30,7 +30,7 @@ If you want S3 support, you must additionally add the following dependency:
3030
<dependency>
3131
<groupId>io.ocfl</groupId>
3232
<artifactId>ocfl-java-aws</artifactId>
33-
<version>2.2.0</version>
33+
<version>2.2.1</version>
3434
</dependency>
3535
```
3636

ocfl-java-api/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@
3131
<parent>
3232
<groupId>io.ocfl</groupId>
3333
<artifactId>ocfl-java-parent</artifactId>
34-
<version>2.2.1-SNAPSHOT</version>
34+
<version>2.2.1</version>
3535
<relativePath>../pom.xml</relativePath>
3636
</parent>
3737

3838
<artifactId>ocfl-java-api</artifactId>
39-
<version>2.2.1-SNAPSHOT</version>
39+
<version>2.2.1</version>
4040

4141
<name>OCFL Java API</name>
4242
<description>Java API for interacting with objects stored in OCFL.</description>

ocfl-java-aws/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@
3131
<parent>
3232
<groupId>io.ocfl</groupId>
3333
<artifactId>ocfl-java-parent</artifactId>
34-
<version>2.2.1-SNAPSHOT</version>
34+
<version>2.2.1</version>
3535
<relativePath>../pom.xml</relativePath>
3636
</parent>
3737

3838
<artifactId>ocfl-java-aws</artifactId>
39-
<version>2.2.1-SNAPSHOT</version>
39+
<version>2.2.1</version>
4040

4141
<name>OCFL Java AWS</name>
4242
<description>Java OCFL implementation that writes to S3.</description>
@@ -58,7 +58,7 @@
5858
<dependency>
5959
<groupId>io.ocfl</groupId>
6060
<artifactId>ocfl-java-core</artifactId>
61-
<version>2.2.1-SNAPSHOT</version>
61+
<version>2.2.1</version>
6262
</dependency>
6363

6464
<!-- AWS -->

ocfl-java-core/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@
3131
<parent>
3232
<groupId>io.ocfl</groupId>
3333
<artifactId>ocfl-java-parent</artifactId>
34-
<version>2.2.1-SNAPSHOT</version>
34+
<version>2.2.1</version>
3535
<relativePath>../pom.xml</relativePath>
3636
</parent>
3737

3838
<artifactId>ocfl-java-core</artifactId>
39-
<version>2.2.1-SNAPSHOT</version>
39+
<version>2.2.1</version>
4040

4141
<name>OCFL Java Core</name>
4242
<description>Core Java OCFL implementation code.</description>
@@ -51,7 +51,7 @@
5151
<dependency>
5252
<groupId>io.ocfl</groupId>
5353
<artifactId>ocfl-java-api</artifactId>
54-
<version>2.2.1-SNAPSHOT</version>
54+
<version>2.2.1</version>
5555
</dependency>
5656

5757
<!-- JSON -->

ocfl-java-itest/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@
3131
<parent>
3232
<groupId>io.ocfl</groupId>
3333
<artifactId>ocfl-java-parent</artifactId>
34-
<version>2.2.1-SNAPSHOT</version>
34+
<version>2.2.1</version>
3535
<relativePath>../pom.xml</relativePath>
3636
</parent>
3737

3838
<artifactId>ocfl-java-itest</artifactId>
39-
<version>2.2.1-SNAPSHOT</version>
39+
<version>2.2.1</version>
4040

4141
<name>OCFL Java Integration Tests</name>
4242
<description>Integration tests for the OCFL Java library.</description>
@@ -57,12 +57,12 @@
5757
<dependency>
5858
<groupId>io.ocfl</groupId>
5959
<artifactId>ocfl-java-core</artifactId>
60-
<version>2.2.1-SNAPSHOT</version>
60+
<version>2.2.1</version>
6161
</dependency>
6262
<dependency>
6363
<groupId>io.ocfl</groupId>
6464
<artifactId>ocfl-java-aws</artifactId>
65-
<version>2.2.1-SNAPSHOT</version>
65+
<version>2.2.1</version>
6666
</dependency>
6767

6868
<!-- Test -->

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131

3232
<groupId>io.ocfl</groupId>
3333
<artifactId>ocfl-java-parent</artifactId>
34-
<version>2.2.1-SNAPSHOT</version>
34+
<version>2.2.1</version>
3535
<packaging>pom</packaging>
3636

3737
<name>OCFL Java Parent POM</name>

0 commit comments

Comments
 (0)