Skip to content

Commit afb4804

Browse files
authored
Merge pull request #122 from LFDT-Lockness/fix-katex
Fix missing katex macros
2 parents a7e0a80 + 27ab149 commit afb4804

File tree

7 files changed

+20
-8
lines changed

7 files changed

+20
-8
lines changed

Cargo.lock

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cggmp21/CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## v0.5.2
4+
* Fix missing macros in `katex-header.html` (only affects rendered docs) [#122]
5+
6+
[#122]: https://github.com/LFDT-Lockness/cggmp21/pull/122
7+
38
## v0.5.1
49
* Update `katex-header.html` injected into docs [#121]
510

cggmp21/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cggmp21"
3-
version = "0.5.1"
3+
version = "0.5.2"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
description = "TSS ECDSA implementation based on CGGMP21 paper"

hex_or_bin/hex_or_bin.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ where
5252
out: T,
5353
_ph: core::marker::PhantomData<T>,
5454
}
55-
impl<'de, T> serde::de::Visitor<'de> for Visitor<T>
55+
impl<T> serde::de::Visitor<'_> for Visitor<T>
5656
where
5757
T: AsMut<[u8]>,
5858
{

katex-header.html

+2
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@
3131
"\\V": "\\mathcal{V}",
3232
"\\H": "\\mathcal{H}",
3333
"\\?": "\\stackrel{?}{=}",
34+
"\\ith": "i^{\\text{th}}",
35+
"\\sk": "\\text{sk}",
3436
},
3537
});
3638
});

key-share/CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## v0.5.2
4+
* Fix missing macros in `katex-header.html` (only affects rendered docs) [#122]
5+
6+
[#122]: https://github.com/LFDT-Lockness/cggmp21/pull/122
7+
38
## v0.5.1
49
* Update `katex-header.html` injected into docs [#121]
510

key-share/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "key-share"
3-
version = "0.5.1"
3+
version = "0.5.2"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
description = "Key share of any Threshold Signature Scheme (TSS)"

0 commit comments

Comments
 (0)