Skip to content

Commit

Permalink
docs(CHANGELOG): update
Browse files Browse the repository at this point in the history
  • Loading branch information
saying121 committed Jul 21, 2024
1 parent 8d2d9b7 commit 929913c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion crates/decrypt-cookies/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ 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.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [0.6.0] - 2024-07-13

### Added

Expand Down
2 changes: 1 addition & 1 deletion crates/decrypt-cookies/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ windows = { version = "^0.58", features = [
[dev-dependencies]
tracing-subscriber = { workspace = true }
tokio = { version = "^1", features = ["macros", "rt-multi-thread"] }
miette = { workspace = true, features = ['fancy'] }
miette = { workspace = true, features = ["fancy"] }
reqwest = { version = "^0.12", features = ["cookies"] }

[features]
Expand Down
4 changes: 3 additions & 1 deletion crates/decrypt-cookies/src/chromium/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,9 @@ impl ChromiumBuilder {
.unwrap_or_else(|| info.cookies()),
&temp_cookies_path,
);
_ = tokio::join!(cp_login, cp_cookies);
let (login, cookies) = tokio::join!(cp_login, cp_cookies);
login.into_diagnostic()?;
cookies.into_diagnostic()?;

let (cookies_query, login_data_query) = (
CookiesQuery::new(temp_cookies_path),
Expand Down

0 comments on commit 929913c

Please sign in to comment.