Skip to content

Commit 9652c78

Browse files
v0.21.7
1 parent 08deccf commit 9652c78

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "base64"
3-
version = "0.21.6"
3+
version = "0.21.7"
44
authors = ["Alice Maz <alice@alicemaz.com>", "Marshall Pierce <marshall@mpierce.org>"]
55
description = "encodes and decodes base64 as bytes or utf8"
66
repository = "https://github.com/marshallpierce/rust-base64"

RELEASE-NOTES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 0.21.7
2+
3+
- Support getting an alphabet's contents as a str via `Alphabet::as_str()`
4+
15
# 0.21.6
26

37
- Improved introductory documentation and example

src/alphabet.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//! Provides [Alphabet] and constants for alphabets commonly used in the wild.
22
33
use crate::PAD_BYTE;
4-
use core::{convert, fmt, primitive::str};
4+
use core::{convert, fmt};
55
#[cfg(any(feature = "std", test))]
66
use std::error;
77

0 commit comments

Comments
 (0)