Skip to content

Commit

Permalink
Docs and changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
rozbb committed Oct 26, 2023
1 parent 0fc3c2d commit 3dd125d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## Pending

- [\#689](https://github.com/arkworks-rs/algebra/pull/689) (`ark-serialize`) Add `CanonicalSerialize` and `CanonicalDeserialize` impls for `VecDeque` and `LinkedList`.
- [\#693](https://github.com/arkworks-rs/algebra/pull/693) (`ark-serialize`) Add `serialize_to_vec!` convenience macro.

### Breaking changes

Expand Down
4 changes: 2 additions & 2 deletions serialize/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ pub use ark_serialize_derive::*;

use digest::{generic_array::GenericArray, Digest, OutputSizeUser};

/// Serializes the given items in sequence. `serialize_to_vec![a, b, c, d, e]` is identical to
/// the value of `buf` after `(a, b, c, d, e).serialize_compressed(&mut buf)`.
/// Serializes the given `CanonicalSerialize` items in sequence. `serialize_to_vec![a, b, c, d, e]`
/// is identical to the value of `buf` after `(a, b, c, d, e).serialize_compressed(&mut buf)`.
#[macro_export]
macro_rules! serialize_to_vec {
($($x:expr),*) => ({
Expand Down

0 comments on commit 3dd125d

Please sign in to comment.