We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a22c481 commit 403e15aCopy full SHA for 403e15a
CHANGELOG.md
@@ -1,5 +1,13 @@
1
# Changelog
2
3
+## v0.9.0
4
+* Change `Polynomial::degree` to return a special enum `PolynomialDegree` [#147] \
5
+ `PolynomialDegree` correctly represent a degree of polynomial that can be either infinite (for polynomial `f(x) = 0`)
6
+ or finite (for all other sorts of polynomials)
7
+
8
9
+[#147]: https://github.com/ZenGo-X/curv/pull/148
10
11
## v0.8.3
12
* Add `generate_random_point` function from `centipede`, `bulletproof` crates [#148] \
13
It takes uniformly distributed bytes and produces secp256k1 point with unknown logarithm.
Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "curv-kzen"
-version = "0.8.3"
+version = "0.9.0"
edition = "2018"
authors = [
"Omer Shlomovits",
0 commit comments