summaryrefslogtreecommitdiff
path: root/wpa-psk
diff options
context:
space:
mode:
authorStefan Kreutz <mail@skreutz.com>2023-02-16 23:34:07 +0100
committerStefan Kreutz <mail@skreutz.com>2023-02-16 23:34:07 +0100
commit79e6c656b2e543318c0cbbb1319c4de2b0201d3e (patch)
tree3f65607c55759988531591f4b8831e941ef657be /wpa-psk
parenta29cb44434224ea02e4af7537f26a02ec2ce65b8 (diff)
downloadwpa-psk-79e6c656b2e543318c0cbbb1319c4de2b0201d3e.tar
Release wpa-psk-cli 0.1.2 and wpa-psk 0.2.1wpa-psk-cli-0.1.2wpa-psk-0.2.1
Diffstat (limited to 'wpa-psk')
-rw-r--r--wpa-psk/CHANGELOG.md14
-rw-r--r--wpa-psk/Cargo.toml4
2 files changed, 16 insertions, 2 deletions
diff --git a/wpa-psk/CHANGELOG.md b/wpa-psk/CHANGELOG.md
index 76be55a..c32ff78 100644
--- a/wpa-psk/CHANGELOG.md
+++ b/wpa-psk/CHANGELOG.md
@@ -10,6 +10,20 @@ The format is based on [Keep A Changelog][] and this project adheres to
## Unreleased
+## [0.2.1] - 2022-02-16
+
+### Added
+
+- Added missing documentation.
+- Derived `Eq` for custom error types.
+
+### Changed
+
+- Replaced the deprecated `sha-1` crate with `sha1`.
+- Forbid unsafe code and missing documentation.
+- Updated Git repository URL.
+- Updated dependencies.
+
## [0.2.0] - 2022-05-28
### Added
diff --git a/wpa-psk/Cargo.toml b/wpa-psk/Cargo.toml
index 8730a65..ebaf9f5 100644
--- a/wpa-psk/Cargo.toml
+++ b/wpa-psk/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "wpa-psk"
-version = "0.2.0"
+version = "0.2.1"
authors = ["Stefan Kreutz <mail@skreutz.com>"]
edition = "2021"
description = "Compute the WPA-PSK of a Wi-FI SSID and passphrase"
@@ -14,4 +14,4 @@ publish = true
[dependencies]
pbkdf2 = { version = "0.11.0", default-features = false }
hmac = { version = "0.12.1", default-features = false }
-sha1 = { version = "0.10.0", default-features = false }
+sha1 = { version = "0.10.5", default-features = false }
Generated by cgit. See skreutz.com for my tech blog and contact information.