]> git.lizzy.rs Git - PAKEs.git/commitdiff
srp v0.6.0 (#84)
authorTony Arcieri <bascule@gmail.com>
Sat, 22 Jan 2022 21:18:05 +0000 (14:18 -0700)
committerGitHub <noreply@github.com>
Sat, 22 Jan 2022 21:18:05 +0000 (14:18 -0700)
Cargo.lock
srp/CHANGELOG.md [new file with mode: 0644]
srp/Cargo.toml
srp/src/lib.rs

index 74a3c15ebf8773995f46bdac7cecb3489b969806..43ec84f9a6adec316a4567a603236b4166779c91 100644 (file)
@@ -420,7 +420,7 @@ dependencies = [
 
 [[package]]
 name = "srp"
-version = "0.6.0-pre"
+version = "0.6.0"
 dependencies = [
  "digest 0.10.1",
  "generic-array 0.14.4",
diff --git a/srp/CHANGELOG.md b/srp/CHANGELOG.md
new file mode 100644 (file)
index 0000000..a87a934
--- /dev/null
@@ -0,0 +1,41 @@
+# Changelog
+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).
+
+## 0.6.0 (2022-01-22)
+### Changed
+- Use `modpow` for constant time modular exponentation ([#78])
+- Rebuild library ([#79])
+
+[#78]: https://github.com/RustCrypto/PAKEs/pull/78
+[#79]: https://github.com/RustCrypto/PAKEs/pull/79
+
+## 0.5.0 (2020-10-07)
+
+## 0.4.3 (2019-11-07)
+
+## 0.4.2 (2019-11-06)
+
+## 0.4.1 (2019-11-07)
+
+## 0.4.0 (2018-12-20)
+
+## 0.3.0 (2018-10-22)
+
+## 0.2.5 (2018-04-14)
+
+## 0.2.4 (2017-11-01)
+
+## 0.2.3 (2017-08-17)
+
+## 0.2.2 (2017-08-14)
+
+## 0.2.1 (2017-08-14)
+
+## 0.2.0 (2017-08-14)
+
+## 0.1.1 (2017-08-13)
+
+## 0.1.0 (2017-08-13)
index 88ea5b1c8db0dbb7dc9c2a4520b08260ff370c89..2ec163b6c62eaa3417c25a8bb0face215acf0261 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "srp"
-version = "0.6.0-pre"
+version = "0.6.0"
 authors = ["RustCrypto Developers"]
 license = "MIT OR Apache-2.0"
 description = "Secure Remote Password (SRP) protocol implementation"
@@ -24,4 +24,4 @@ rand = "0.6"
 sha2 = "0.10"
 sha-1 = "0.10"
 num-traits = "0.2"
-hex-literal = "0.3"
\ No newline at end of file
+hex-literal = "0.3"
index 9ce03463237eaf2171fc090d9df2b99f2d7ad333..bec6c1105e74fc59bd435eb67c4176a818010d45 100644 (file)
@@ -7,7 +7,7 @@
 //!
 //! ```toml
 //! [dependencies]
-//! srp = "0.4"
+//! srp = "0.6"
 //! ```
 //!
 //! Next read documentation for [`client`](client/index.html) and