Skip to content

Commit

Permalink
Merge pull request #2 from filip26/patch/jre8-fix
Browse files Browse the repository at this point in the history
Bump project version to 0.0.1
  • Loading branch information
filip26 authored Aug 7, 2022
2 parents 7708ecf + fddff95 commit 1998b70
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 4 deletions.
27 changes: 26 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,39 @@ An implementation of the [Decentralized Identifiers (DIDs) v1.0](https://www.w3.

[![Java 17 CI](https://github.com/filip26/carbon-decentralized-identifiers/actions/workflows/java17-build.yml/badge.svg)](https://github.com/filip26/carbon-decentralized-identifiers/actions/workflows/java17-build.yml)
[![Android (Java 8) CI](https://github.com/filip26/carbon-decentralized-identifiers/actions/workflows/java8-build.yml/badge.svg)](https://github.com/filip26/carbon-decentralized-identifiers/actions/workflows/java8-build.yml)
[![Maven Central](https://img.shields.io/maven-central/v/com.apicatalog/carbon-decentralized-identifiers.svg?label=Maven%20Central)](https://search.maven.org/search?q=g:%22com.apicatalog%22%20AND%20a:%22carbon-decentralized-identifiers%22)
[![Maven Central](https://img.shields.io/maven-central/v/com.apicatalog/carbon-did.svg?label=Maven%20Central)](https://search.maven.org/search?q=g:%22com.apicatalog%22%20AND%20a:%22carbon-did%22)
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)


## Features

* [did:key method v0.7](https://w3c-ccg.github.io/did-method-key/)

## Installation

### Maven

```xml
<!-- Java 17 -->
<dependency>
<groupId>com.apicatalog</groupId>
<artifactId>carbon-did</artifactId>
<version>0.0.1</version>
</dependency>

```

or

```xml
<!-- Android (Java 8) -->
<dependency>
<groupId>com.apicatalog</groupId>
<artifactId>carbon-did-jre8</artifactId>
<version>0.0.1</version>
</dependency>
```

## Documentation

[![javadoc](https://javadoc.io/badge2/com.apicatalog/carbon-decentralized-identifiers/javadoc.svg)](https://javadoc.io/doc/com.apicatalog/carbon-decentralized-identifiers)
Expand Down
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>carbon</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>0.0.1</version>
<relativePath>pom_parent.xml</relativePath>
</parent>
<artifactId>carbon-did</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>carbon</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>0.0.1</version>
<relativePath>pom_parent.xml</relativePath>
</parent>
<artifactId>carbon-did-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 @@ -8,7 +8,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.apicatalog</groupId>
<artifactId>carbon</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>0.0.1</version>
<packaging>pom</packaging>

<name>Carbon DIDs</name>
Expand Down

0 comments on commit 1998b70

Please sign in to comment.