summaryrefslogtreecommitdiff
path: root/wpa-psk
diff options
context:
space:
mode:
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.