Skip to content

Commit de933b4

Browse files
committed
v2.0.1
1 parent c056a64 commit de933b4

File tree

8 files changed

+28
-17
lines changed

8 files changed

+28
-17
lines changed

CHANGELOG.md

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

33
## [Unreleased] - ReleaseDate
44

5+
## [2.0.1] - 2024-03-01
6+
7+
### Fixed
8+
9+
- Mutable head revision writes were failing if they only add a file with content that was already present in the object: https://github.com/OCFL/ocfl-java/issues/105
10+
11+
### Changed
12+
13+
- Updated dependencies
14+
515
## [2.0.0] - 2023-05-17
616

717
### Fixed
@@ -233,7 +243,8 @@ DROP TABLE ocfl_object_lock;
233243

234244
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.
235245

236-
[Unreleased]: https://github.com/ocfl/ocfl-java/compare/v2.0.0...HEAD
246+
[Unreleased]: https://github.com/ocfl/ocfl-java/compare/v2.0.1...HEAD
247+
[2.0.1]: https://github.com/ocfl/ocfl-java/compare/v2.0.0...v2.0.1
237248
[2.0.0]: https://github.com/ocfl/ocfl-java/compare/v1.5.0...v2.0.0
238249
[1.5.0]: https://github.com/ocfl/ocfl-java/compare/v1.4.6...v1.5.0
239250
[1.4.6]: https://github.com/ocfl/ocfl-java/compare/v1.4.5...v1.4.6

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.0.0</version>
23+
<version>2.0.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.0.0</version>
33+
<version>2.0.1</version>
3434
</dependency>
3535
```
3636

docs/DEVELOPMENT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ git checkout -b "release-$RELEASE_VERSION"
7373
mvn versions:set -DgenerateBackupPoms=false -DnewVersion=$RELEASE_VERSION
7474
# Update version in README.md
7575
# Update version in CHANGELOG.md
76-
mvn add .
76+
git add .
7777
git commit -m "v$RELEASE_VERSION"
7878
mvn versions:set -DgenerateBackupPoms=false -DnewVersion=$SNAP_VERSION
7979
git add .

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.0.1-SNAPSHOT</version>
34+
<version>2.0.1</version>
3535
<relativePath>../pom.xml</relativePath>
3636
</parent>
3737

3838
<artifactId>ocfl-java-api</artifactId>
39-
<version>2.0.1-SNAPSHOT</version>
39+
<version>2.0.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.0.1-SNAPSHOT</version>
34+
<version>2.0.1</version>
3535
<relativePath>../pom.xml</relativePath>
3636
</parent>
3737

3838
<artifactId>ocfl-java-aws</artifactId>
39-
<version>2.0.1-SNAPSHOT</version>
39+
<version>2.0.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.0.1-SNAPSHOT</version>
61+
<version>2.0.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.0.1-SNAPSHOT</version>
34+
<version>2.0.1</version>
3535
<relativePath>../pom.xml</relativePath>
3636
</parent>
3737

3838
<artifactId>ocfl-java-core</artifactId>
39-
<version>2.0.1-SNAPSHOT</version>
39+
<version>2.0.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.0.1-SNAPSHOT</version>
54+
<version>2.0.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.0.1-SNAPSHOT</version>
34+
<version>2.0.1</version>
3535
<relativePath>../pom.xml</relativePath>
3636
</parent>
3737

3838
<artifactId>ocfl-java-itest</artifactId>
39-
<version>2.0.1-SNAPSHOT</version>
39+
<version>2.0.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.0.1-SNAPSHOT</version>
60+
<version>2.0.1</version>
6161
</dependency>
6262
<dependency>
6363
<groupId>io.ocfl</groupId>
6464
<artifactId>ocfl-java-aws</artifactId>
65-
<version>2.0.1-SNAPSHOT</version>
65+
<version>2.0.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.0.1-SNAPSHOT</version>
34+
<version>2.0.1</version>
3535
<packaging>pom</packaging>
3636

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

0 commit comments

Comments
 (0)