Skip to content

Commit

Permalink
Merge tag 'com.io7m.jbssio-2.0.0' into develop
Browse files Browse the repository at this point in the history
Release: com.io7m.jbssio 2.0.0

Change: Updated dependencies.
Change: Added bounded extensions. (Ticket: #5)
Change: Added fallible interface for creating exceptions. (Ticket: #4)
  • Loading branch information
io7m committed Apr 2, 2023
2 parents 8dce7fc + c2f8440 commit 244fee7
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 15 deletions.
27 changes: 21 additions & 6 deletions README-CHANGES.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,21 +15,36 @@
</c:change>
</c:changes>
</c:release>
<c:release date="2020-11-25T00:00:00+00:00" is-open="false" ticket-system="com.github.io7m.jbssio" version="1.0.2">
<c:release date="2020-12-24T00:00:00+00:00" is-open="false" ticket-system="com.github.io7m.jbssio" version="1.1.0">
<c:changes>
<c:change date="2020-11-25T00:00:00+00:00" summary="Correctly use slashes in paths (again!)">
<c:change date="2020-12-24T00:00:00+00:00" summary="Add reader/writer implementations that throw UnsupportedOperationException"/>
</c:changes>
</c:release>
<c:release date="2023-04-02T11:30:36+00:00" is-open="false" ticket-system="com.github.io7m.jbssio" version="2.0.0">
<c:changes>
<c:change date="2023-04-02T00:00:00+00:00" summary="Updated dependencies."/>
<c:change date="2023-04-02T00:00:00+00:00" summary="Added bounded extensions.">
<c:tickets>
<c:ticket id="1"/>
<c:ticket id="5"/>
</c:tickets>
</c:change>
<c:change date="2023-04-02T00:00:00+00:00" summary="Added fallible interface for creating exceptions.">
<c:tickets>
<c:ticket id="4"/>
</c:tickets>
</c:change>
</c:changes>
</c:release>
<c:release date="2020-12-24T00:00:00+00:00" is-open="false" ticket-system="com.github.io7m.jbssio" version="1.1.0">
<c:release date="2020-11-25T00:00:00+00:00" is-open="false" ticket-system="com.github.io7m.jbssio" version="1.0.2">
<c:changes>
<c:change date="2020-12-24T00:00:00+00:00" summary="Add reader/writer implementations that throw UnsupportedOperationException"/>
<c:change date="2020-11-25T00:00:00+00:00" summary="Correctly use slashes in paths (again!)">
<c:tickets>
<c:ticket id="1"/>
</c:tickets>
</c:change>
</c:changes>
</c:release>
<c:release date="2022-04-09T18:21:46+00:00" is-open="false" ticket-system="com.github.io7m.jbssio" version="1.1.1">
<c:release date="2022-04-09T00:00:00+00:00" is-open="false" ticket-system="com.github.io7m.jbssio" version="1.1.1">
<c:changes>
<c:change date="2022-04-09T00:00:00+00:00" summary="Update ieee754b16"/>
<c:change date="2022-04-09T00:00:00+00:00" summary="Update OSGi bundle annotations"/>
Expand Down
2 changes: 1 addition & 1 deletion com.io7m.jbssio.api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<parent>
<artifactId>com.io7m.jbssio</artifactId>
<groupId>com.io7m.jbssio</groupId>
<version>2.0.0-SNAPSHOT</version>
<version>2.0.0</version>
</parent>

<artifactId>com.io7m.jbssio.api</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion com.io7m.jbssio.ext.bounded/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<parent>
<artifactId>com.io7m.jbssio</artifactId>
<groupId>com.io7m.jbssio</groupId>
<version>2.0.0-SNAPSHOT</version>
<version>2.0.0</version>
</parent>

<artifactId>com.io7m.jbssio.ext.bounded</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion com.io7m.jbssio.tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<parent>
<artifactId>com.io7m.jbssio</artifactId>
<groupId>com.io7m.jbssio</groupId>
<version>2.0.0-SNAPSHOT</version>
<version>2.0.0</version>
</parent>

<artifactId>com.io7m.jbssio.tests</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion com.io7m.jbssio.vanilla/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<parent>
<artifactId>com.io7m.jbssio</artifactId>
<groupId>com.io7m.jbssio</groupId>
<version>2.0.0-SNAPSHOT</version>
<version>2.0.0</version>
</parent>

<artifactId>com.io7m.jbssio.vanilla</artifactId>
Expand Down
10 changes: 5 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

<groupId>com.io7m.jbssio</groupId>
<artifactId>com.io7m.jbssio</artifactId>
<version>2.0.0-SNAPSHOT</version>
<version>2.0.0</version>
<packaging>pom</packaging>

<name>com.io7m.jbssio</name>
Expand All @@ -31,8 +31,8 @@
</modules>

<properties>
<io7m.api.previousVersion>1.1.0</io7m.api.previousVersion>
<com.io7m.junit.version>5.9.1</com.io7m.junit.version>
<io7m.api.previousVersion>2.0.0</io7m.api.previousVersion>
<com.io7m.junit.version>5.9.2</com.io7m.junit.version>
</properties>

<licenses>
Expand Down Expand Up @@ -93,12 +93,12 @@
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>2.0.6</version>
<version>2.0.7</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.4.5</version>
<version>1.4.6</version>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
Expand Down

0 comments on commit 244fee7

Please sign in to comment.