Skip to content

Commit

Permalink
Re-export relevant items from five8_const
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinheavey committed Sep 5, 2024
1 parent 2f1549b commit 779a0d8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion crates/five8/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
# Changelog

## [0.2.0] - Unreleased
## [0.2.0] - 2024-09-05

- Remove the `len` parameter from `encode_32` and `encode_64`, and just return the `len`.
- Re-export relevant items from `five8_const`

## [0.1.0] - 2024-07-30

Expand Down
1 change: 1 addition & 0 deletions crates/five8/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ mod decode;
mod encode;
pub use decode::{decode_32, decode_64};
pub use encode::{encode_32, encode_64};
pub use five8_core::{DecodeError, BASE58_ENCODED_32_MAX_LEN, BASE58_ENCODED_64_MAX_LEN};
#[cfg(feature = "dev-utils")]
pub use {
decode::{truncate_and_swap_u64s_64_pub, truncate_and_swap_u64s_scalar_pub},
Expand Down

0 comments on commit 779a0d8

Please sign in to comment.