Skip to content

Commit 72de3e6

Browse files
authored
Merge pull request #140 from linux-credentials/release/v0.2.0
Release 0.2.0
2 parents 5b1ccb9 + f215edd commit 72de3e6

File tree

7 files changed

+29
-11
lines changed

7 files changed

+29
-11
lines changed

CHANGELOG.md

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,28 @@
11
# [unreleased]
22

3+
# [0.2.0] - 2025-02-18
4+
35
## Breaking Changes
46

7+
### Gateway API
8+
9+
- Added window handle parameter.
10+
511
### UI Controller API
612

7-
- Renamed `InitiateEventStream()` to `Subscribe()`
8-
- Serialize `BackgroundEvent`, `HybridState`, `UsbState` as tag-value structs
13+
- Renamed `InitiateEventStream()` to `Subscribe()`.
14+
- Serialized `BackgroundEvent`, `HybridState`, `UsbState` as tag-value structs.
15+
- Added window handle parameter.
16+
17+
## Improvements
18+
19+
- Added NFC support.
20+
- Added PRF support.
21+
- Added translation support, with English and German translations.
22+
- Added client information the initial UI prompt.
23+
- Fixed user handle deserialization.
24+
- Added a GUI for demo client.
25+
- Notify user when a UV method is not set when required.
926

1027
# [0.1.0] - 2025-08-14
1128

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

credentialsd-common/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "credentialsd-common"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
edition = "2024"
55
authors = ["Isaiah Inuwa <isaiah.inuwa@gmail.com>", "Martin Sirringhaus <martin.sirringhaus@suse.com>", "Alfie Fresta <alfie.fresta@gmail.com>"]
66
license = "LGPL-3.0-only"

credentialsd-ui/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "credentialsd-ui"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
edition = "2024"
55
authors = ["Isaiah Inuwa <isaiah.inuwa@gmail.com>", "Martin Sirringhaus <martin.sirringhaus@suse.com>", "Alfie Fresta <alfie.fresta@gmail.com>"]
66
license = "LGPL-3.0-only"

credentialsd-ui/data/xyz.iinuwa.credentialsd.CredentialsUi.metainfo.xml.in.in

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@
2020
<url type="bugtracker">https://github.com/iinuwa/linux-webauthn-platform-api/issues</url>
2121
<content_rating type="oars-1.1" />
2222
<releases>
23-
<release version="0.1.0" date="2024-01-01" />
23+
<release version="0.2.0" date="2026-02-18" />
24+
<release version="0.1.0" date="2025-08-14" />
2425
</releases>
2526
<kudos>
2627
<!--

credentialsd/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "credentialsd"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
authors = ["Isaiah Inuwa <isaiah.inuwa@gmail.com>", "Martin Sirringhaus <martin.sirringhaus@suse.com>", "Alfie Fresta <alfie.fresta@gmail.com>"]
55
edition = "2021"
66
license = "LGPL-3.0-only"

meson.build

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
project(
22
'credentialsd',
33
'rust',
4-
version: '0.1.0',
4+
version: '0.2.0',
55
meson_version: '>= 1.5.0',
66
license: 'LGPL-3.0-only',
77
)
@@ -35,4 +35,4 @@ subdir('dbus')
3535
subdir('systemd')
3636
subdir('webext')
3737
subdir('doc')
38-
subdir('demo_client')
38+
subdir('demo_client')

0 commit comments

Comments
 (0)