Skip to content

Commit

Permalink
Release version 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jceb committed May 31, 2024
1 parent f4337c7 commit 2131680
Show file tree
Hide file tree
Showing 7 changed files with 33 additions and 6 deletions.
27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,33 @@

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

## [0.3.0] - 2024-05-31

### Added Features

- [f91cfd5](https://github.com/identinet/did-web-server/commit/f91cfd5a47332a1e7fb70969a4104c35804d81f6) Create leading directories before storing DID document

### Bug Fixes

- [**breaking**] [14ae074](https://github.com/identinet/did-web-server/commit/14ae0745393a8bcf4c10897f38d790cd9c2402ad) Revert back to default port 8000
- [**breaking**] [7b6957c](https://github.com/identinet/did-web-server/commit/7b6957cfe5b5d37309acd0873bd42ba5f693a9c0) Require proof purpose "authentication"
- [**breaking**] [ae7cd08](https://github.com/identinet/did-web-server/commit/ae7cd0874ada927759c26ee4d38946a613f0c68d) Change support characters in path segments/identifier
- [862206e](https://github.com/identinet/did-web-server/commit/862206e9aeb1d4364d50f0cb6a7de46eb7fe5135) Correct compiler warning
- [c5cf1a7](https://github.com/identinet/did-web-server/commit/c5cf1a704f6adc19a54138f54bce7d3e9212dc53) Enable TLS functionality

### Documentation

- [8ddfcac](https://github.com/identinet/did-web-server/commit/8ddfcacfb058f8bb5e211f8dcba109d7a27dccce) Correct rocket linke in the configuration section
- [eddd7e0](https://github.com/identinet/did-web-server/commit/eddd7e09cfbfeff702d1380453e46edf488e9716) Optimize configuration descriptions
- [2b97a4a](https://github.com/identinet/did-web-server/commit/2b97a4a2167d7b40a8c8b98e2e2ac1c1846bdf38) Add DID management documentation
- [c48d3c9](https://github.com/identinet/did-web-server/commit/c48d3c999f40009da6fd6dcc42a06c989491a0d9) Correct typos

### Miscellaneous Tasks

- [728292a](https://github.com/identinet/did-web-server/commit/728292ad0db90ce3891e7a9a4a11dabd2d762128) Update rocket dependency
- [a7bcdf5](https://github.com/identinet/did-web-server/commit/a7bcdf571c2807624a82e0fbf9373c246a1d26e0) Make error messages more expressive
- [4627a3d](https://github.com/identinet/did-web-server/commit/4627a3dac0fd2fcfa23c990e90c23141274d767e) Print DIDs found in submitted document

## [0.2.0] - 2024-05-30

### 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.2.0"
version = "0.3.0"
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.2.0"
version: "0.3.0"
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.2.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.3.0
```

### 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 @@ -57,7 +57,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.2.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.3.0
```

## Create the first did:web DID
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "did-web-server",
"version": "0.2.0",
"version": "0.3.0",
"description": "Docker image that packages did-web-server",
"author": "identinet GmbH <[email protected]>",
"contributors":
Expand Down

0 comments on commit 2131680

Please sign in to comment.