Skip to content

Commit 2272dcf

Browse files
committed
Release version 0.4.1
1 parent e7af4a2 commit 2272dcf

File tree

7 files changed

+18
-7
lines changed

7 files changed

+18
-7
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
22

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

5+
## [0.4.1] - 2024-07-04
6+
7+
### Bug Fixes
8+
9+
- [9e71a4c](https://github.com/identinet/did-web-server/commit/9e71a4c284db143b5747fcbc8fccb8cf43059875) Correct license information
10+
11+
### Documentation
12+
13+
- [c41b9ec](https://github.com/identinet/did-web-server/commit/c41b9ec3fc0381765b954b886606ead9fc958326) Fix jq command for extracting the verification method
14+
- [a61a5a5](https://github.com/identinet/did-web-server/commit/a61a5a5f26c512ee3ca546fed059b400187b2c9f) Replace localhost with the configured external hostname
15+
516
## [0.4.0] - 2024-07-01
617

718
### Added Features

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,4 +59,4 @@ homepage = "https://github.com/identinet/did-web-server"
5959
keywords = ["ssi", "did", "http"]
6060
name = "did-web-server"
6161
repository = "https://github.com/identinet/did-web-server"
62-
version = "0.4.0"
62+
version = "0.4.1"

docs/public/openapi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# HTTP methods: https://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods
77
openapi: 3.1.0
88
info:
9-
version: "0.4.0"
9+
version: "0.4.1"
1010
title: did-web-server API documentation
1111
description: |
1212
This is the Open API specification for [did-web-server](https://dws.identinet.io).

docs/src/content/docs/deployment/self-hosting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ DWS_TLS={certs="example.com.pem",key="example.com-key.pem"}
6464
2. With the updated configuration in place, let's restart the server:
6565

6666
```bash
67-
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
67+
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
6868
```
6969

7070
### Test Functionality

docs/src/content/docs/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ With the configuration in place, it is time to start the server. Execute the fol
6262
the current directory. Newly created DIDs will be stored in the `./did_store` directory:
6363

6464
```bash
65-
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
65+
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
6666
```
6767

6868
## Create the first did:web DID

manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "did-web-server",
3-
"version": "0.4.0",
3+
"version": "0.4.1",
44
"description": "Docker image that packages did-web-server",
55
"author": "identinet GmbH <[email protected]>",
66
"contributors":
@@ -20,4 +20,4 @@
2020
"name": "docker.io/identinet",
2121
"url": "https://hub.docker.com/r/identinet/did-web-server"
2222
}
23-
}
23+
}

0 commit comments

Comments
 (0)