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: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,27 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project
adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [v0.7.6](https://github.com/pando85/passless/tree/v0.7.6) - 2026-02-14

### Added

- Improve error handling and add comprehensive tests ([3ebd823](https://github.com/pando85/passless/commit/3ebd823ba5a3ec9b36ace4aa806b52cba676e024))

### Fixed

- Resolve all compilation errors in error handling and testing branch ([faad274](https://github.com/pando85/passless/commit/faad2743e5986c4ef156f62068a65516e039a15f))
- Credential list now reflects changes immediately ([508541a](https://github.com/pando85/passless/commit/508541a1ed927cb43f8b4017f95621f5b7a2e610))

### Build

- deps: Update Rust crate ctrlc to v3.5.2 ([2e7edf9](https://github.com/pando85/passless/commit/2e7edf92a78d7cfdd976e1056a5625e922ea2117))
- deps: Update Rust crate clap_complete to v4.5.66 ([72ccd25](https://github.com/pando85/passless/commit/72ccd2562b651ab4fc363ba464af4725b6a4238e))
- deps: Update Rust crate clap to v4.5.58 ([abc38c0](https://github.com/pando85/passless/commit/abc38c0b7fe602c8e0e5884ea12cf208f4301977))
- deps: Update Rust crate env_logger to v0.11.9 ([dd761a8](https://github.com/pando85/passless/commit/dd761a89a10421b768b8bc9f1322e1ea0e335dc0))
- deps: Update Rust crate toml to v1 ([6ca7e1a](https://github.com/pando85/passless/commit/6ca7e1ad60a7f64713f94d50a995de11df5afcc9))
- deps: Update Rust crate syn to v2.0.115 ([f71ac70](https://github.com/pando85/passless/commit/f71ac70407da544ae62ac4922fc565d02df2cd1e))
- deps: Update Rust crate toml to v1.0.1 ([9eb463b](https://github.com/pando85/passless/commit/9eb463bb324f9d7bd9db37cf266e7bce5e4a7489))

## [v0.7.5](https://github.com/pando85/passless/tree/v0.7.5) - 2026-02-10

### Build
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.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ resolver = "2"
[workspace.package]
authors = ["Pando85 <pando855@gmail.com>"]
edition = "2024"
version = "0.7.5"
version = "0.7.6"
license-file = "./LICENSE"
homepage = "https://github.com/pando85/passless"
repository = "https://github.com/pando85/passless"
[workspace.dependencies]
# Workspace crates
passless-core = { path = "./passless-core", version = "0.7.5" }
passless-config-doc = { path = "./passless-config-doc", version = "0.7.5" }
passless-core = { path = "./passless-core", version = "0.7.6" }
passless-config-doc = { path = "./passless-config-doc", version = "0.7.6" }

soft-fido2 = "0.10.1"
soft-fido2-ctap = "0.10.1"
Expand Down
Loading