Skip to content

Commit

Permalink
Merge pull request #61 from filip26/release/v0.1.3
Browse files Browse the repository at this point in the history
v0.1.3
  • Loading branch information
filip26 authored Feb 16, 2024
2 parents c333375 + 41fc67b commit ff675dd
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/java17-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ jobs:
environment: RELEASE
steps:
- uses: actions/checkout@v4
- name: Set up Maven Central Repository
uses: actions/setup-java@v3
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/java8-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.8
- name: Set up JDK 8
uses: actions/setup-java@v1
with:
java-version: 1.8
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/java8-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ jobs:
environment: RELEASE
steps:
- uses: actions/checkout@v4
- name: Set up Maven Central Repository
uses: actions/setup-java@v3
- name: Set up JDK 8
uses: actions/setup-java@v4
with:
java-version: '8'
distribution: 'temurin'
Expand Down
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Java 17+
<dependency>
<groupId>com.apicatalog</groupId>
<artifactId>iridium-cbor-ld</artifactId>
<version>0.1.2</version>
<version>0.1.3</version>
</dependency>

```
Expand All @@ -29,7 +29,7 @@ Java 17+
Java 8+, Android API Level >=31

```gradle
implementation("com.apicatalog:iridium-cbor-ld-jre8:0.1.2")
implementation("com.apicatalog:iridium-cbor-ld-jre8:0.1.3")
```

#### JSON-P Provider
Expand Down Expand Up @@ -109,7 +109,6 @@ Fork and clone the project repository.
> mvn -f pom_jre8.xml clean package
```


## Resources

* [CBOR-LD 1.0 Draft](https://digitalbazaar.github.io/cbor-ld-spec/)
Expand All @@ -126,4 +125,6 @@ Fork and clone the project repository.
</a>

## Commercial Support

Commercial support is available at filip26@gmail.com

2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.apicatalog</groupId>
<artifactId>iridium</artifactId>
<version>0.1.2</version>
<version>0.1.3</version>
<relativePath>pom_parent.xml</relativePath>
</parent>
<artifactId>iridium-cbor-ld</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion pom_jre8.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.apicatalog</groupId>
<artifactId>iridium</artifactId>
<version>0.1.2</version>
<version>0.1.3</version>
<relativePath>pom_parent.xml</relativePath>
</parent>
<artifactId>iridium-cbor-ld-jre8</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion pom_parent.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.apicatalog</groupId>
<artifactId>iridium</artifactId>
<version>0.1.2</version>
<version>0.1.3</version>
<packaging>pom</packaging>

<name>Iridium CBOR-LD (JRE17)</name>
Expand Down

0 comments on commit ff675dd

Please sign in to comment.