Skip to content

Commit

Permalink
v0.21.7
Browse files Browse the repository at this point in the history
  • Loading branch information
marshallpierce committed Jan 11, 2024
1 parent 08deccf commit 9652c78
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "base64"
version = "0.21.6"
version = "0.21.7"
authors = ["Alice Maz <[email protected]>", "Marshall Pierce <[email protected]>"]
description = "encodes and decodes base64 as bytes or utf8"
repository = "https://github.com/marshallpierce/rust-base64"
Expand Down
4 changes: 4 additions & 0 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 0.21.7

- Support getting an alphabet's contents as a str via `Alphabet::as_str()`

# 0.21.6

- Improved introductory documentation and example
Expand Down
2 changes: 1 addition & 1 deletion src/alphabet.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//! Provides [Alphabet] and constants for alphabets commonly used in the wild.

use crate::PAD_BYTE;
use core::{convert, fmt, primitive::str};
use core::{convert, fmt};
#[cfg(any(feature = "std", test))]
use std::error;

Expand Down

0 comments on commit 9652c78

Please sign in to comment.