Skip to content

Commit

Permalink
Release version 0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jceb committed Jul 4, 2024
1 parent e7af4a2 commit 2272dcf
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 7 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@

All notable changes to this project will be documented in this file.

## [0.4.1] - 2024-07-04

### Bug Fixes

- [9e71a4c](https://github.com/identinet/did-web-server/commit/9e71a4c284db143b5747fcbc8fccb8cf43059875) Correct license information

### Documentation

- [c41b9ec](https://github.com/identinet/did-web-server/commit/c41b9ec3fc0381765b954b886606ead9fc958326) Fix jq command for extracting the verification method
- [a61a5a5](https://github.com/identinet/did-web-server/commit/a61a5a5f26c512ee3ca546fed059b400187b2c9f) Replace localhost with the configured external hostname

## [0.4.0] - 2024-07-01

### Added Features
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,4 +59,4 @@ homepage = "https://github.com/identinet/did-web-server"
keywords = ["ssi", "did", "http"]
name = "did-web-server"
repository = "https://github.com/identinet/did-web-server"
version = "0.4.0"
version = "0.4.1"
2 changes: 1 addition & 1 deletion docs/public/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# HTTP methods: https://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods
openapi: 3.1.0
info:
version: "0.4.0"
version: "0.4.1"
title: did-web-server API documentation
description: |
This is the Open API specification for [did-web-server](https://dws.identinet.io).
Expand Down
2 changes: 1 addition & 1 deletion docs/src/content/docs/deployment/self-hosting.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ DWS_TLS={certs="example.com.pem",key="example.com-key.pem"}
2. With the updated configuration in place, let's restart the server:

```bash
docker run -it --rm -p 8000:443 --env-file .env -u "$(id -u):$(id -g)" -v "$PWD:/run/dws" identinet/did-web-server:0.4.0
docker run -it --rm -p 8000:443 --env-file .env -u "$(id -u):$(id -g)" -v "$PWD:/run/dws" identinet/did-web-server:0.4.1
```

### Test Functionality
Expand Down
2 changes: 1 addition & 1 deletion docs/src/content/docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ With the configuration in place, it is time to start the server. Execute the fol
the current directory. Newly created DIDs will be stored in the `./did_store` directory:

```bash
docker run -it --rm -p 8000:8000 --env-file .env -u "$(id -u):$(id -g)" -v "$PWD:/run/dws" identinet/did-web-server:0.4.0
docker run -it --rm -p 8000:8000 --env-file .env -u "$(id -u):$(id -g)" -v "$PWD:/run/dws" identinet/did-web-server:0.4.1
```

## Create the first did:web DID
Expand Down
4 changes: 2 additions & 2 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "did-web-server",
"version": "0.4.0",
"version": "0.4.1",
"description": "Docker image that packages did-web-server",
"author": "identinet GmbH <[email protected]>",
"contributors":
Expand All @@ -20,4 +20,4 @@
"name": "docker.io/identinet",
"url": "https://hub.docker.com/r/identinet/did-web-server"
}
}
}

0 comments on commit 2272dcf

Please sign in to comment.