Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 19 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,28 @@
# [unreleased]

# [0.2.0] - 2025-02-18

## Breaking Changes

### Gateway API

- Added window handle parameter.

### UI Controller API

- Renamed `InitiateEventStream()` to `Subscribe()`
- Serialize `BackgroundEvent`, `HybridState`, `UsbState` as tag-value structs
- Renamed `InitiateEventStream()` to `Subscribe()`.
- Serialized `BackgroundEvent`, `HybridState`, `UsbState` as tag-value structs.
- Added window handle parameter.

## Improvements

- Added NFC support.
- Added PRF support.
- Added translation support, with English and German translations.
- Added client information the initial UI prompt.
- Fixed user handle deserialization.
- Added a GUI for demo client.
- Notify user when a UV method is not set when required.

# [0.1.0] - 2025-08-14

Expand Down
6 changes: 3 additions & 3 deletions 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 credentialsd-common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "credentialsd-common"
version = "0.1.0"
version = "0.2.0"
edition = "2024"
authors = ["Isaiah Inuwa <isaiah.inuwa@gmail.com>", "Martin Sirringhaus <martin.sirringhaus@suse.com>", "Alfie Fresta <alfie.fresta@gmail.com>"]
license = "LGPL-3.0-only"
Expand Down
2 changes: 1 addition & 1 deletion credentialsd-ui/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "credentialsd-ui"
version = "0.1.0"
version = "0.2.0"
edition = "2024"
authors = ["Isaiah Inuwa <isaiah.inuwa@gmail.com>", "Martin Sirringhaus <martin.sirringhaus@suse.com>", "Alfie Fresta <alfie.fresta@gmail.com>"]
license = "LGPL-3.0-only"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@
<url type="bugtracker">https://github.com/iinuwa/linux-webauthn-platform-api/issues</url>
<content_rating type="oars-1.1" />
<releases>
<release version="0.1.0" date="2024-01-01" />
<release version="0.2.0" date="2026-02-18" />
<release version="0.1.0" date="2025-08-14" />
</releases>
<kudos>
<!--
Expand Down
2 changes: 1 addition & 1 deletion credentialsd/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "credentialsd"
version = "0.1.0"
version = "0.2.0"
authors = ["Isaiah Inuwa <isaiah.inuwa@gmail.com>", "Martin Sirringhaus <martin.sirringhaus@suse.com>", "Alfie Fresta <alfie.fresta@gmail.com>"]
edition = "2021"
license = "LGPL-3.0-only"
Expand Down
4 changes: 2 additions & 2 deletions meson.build
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
project(
'credentialsd',
'rust',
version: '0.1.0',
version: '0.2.0',
meson_version: '>= 1.5.0',
license: 'LGPL-3.0-only',
)
Expand Down Expand Up @@ -35,4 +35,4 @@ subdir('dbus')
subdir('systemd')
subdir('webext')
subdir('doc')
subdir('demo_client')
subdir('demo_client')