diff --git a/Cargo.toml b/Cargo.toml index 00fd63a0..d89d95c8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,8 +3,8 @@ name = "base64" version = "0.10.1" authors = ["Alice Maz ", "Marshall Pierce "] description = "encodes and decodes base64 as bytes or utf8" -repository = "https://github.com/alicemaz/rust-base64" -documentation = "https://github.com/alicemaz/rust-base64/blob/master/README.md" +repository = "https://github.com/marshallpierce/rust-base64" +documentation = "https://docs.rs/base64" readme = "README.md" keywords = ["base64", "utf8", "encode", "decode"] categories = ["encoding"] diff --git a/README.md b/README.md index 36670692..4ad8f1e1 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ [base64](https://crates.io/crates/base64) === -[![](https://img.shields.io/crates/v/base64.svg)](https://crates.io/crates/base64) [![Docs](https://docs.rs/base64/badge.svg)](https://docs.rs/base64) [![Build](https://travis-ci.org/alicemaz/rust-base64.svg?branch=master)](https://travis-ci.org/alicemaz/rust-base64) [![codecov](https://codecov.io/gh/alicemaz/rust-base64/branch/master/graph/badge.svg)](https://codecov.io/gh/alicemaz/rust-base64) +[![](https://img.shields.io/crates/v/base64.svg)](https://crates.io/crates/base64) [![Docs](https://docs.rs/base64/badge.svg)](https://docs.rs/base64) [![Build](https://travis-ci.org/marshallpierce/rust-base64.svg?branch=master)](https://travis-ci.org/marshallpierce/rust-base64) [![codecov](https://codecov.io/gh/marshallpierce/rust-base64/branch/master/graph/badge.svg)](https://codecov.io/gh/marshallpierce/rust-base64) diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md index 5e032eae..3d1ed329 100644 --- a/RELEASE-NOTES.md +++ b/RELEASE-NOTES.md @@ -5,7 +5,7 @@ # 0.10.1 - Minimum rust version 1.27.2 -- Fix bug in streaming encoding ([#90](https://github.com/alicemaz/rust-base64/pull/90)): if the underlying writer didn't write all the bytes given to it, the remaining bytes would not be retried later. See the docs on `EncoderWriter::write`. +- Fix bug in streaming encoding ([#90](https://github.com/marshallpierce/rust-base64/pull/90)): if the underlying writer didn't write all the bytes given to it, the remaining bytes would not be retried later. See the docs on `EncoderWriter::write`. - Make it configurable whether or not to return an error when decoding detects excess trailing bits. # 0.10.0 diff --git a/src/decode.rs b/src/decode.rs index b4208915..44a7782c 100644 --- a/src/decode.rs +++ b/src/decode.rs @@ -718,7 +718,7 @@ mod tests { let decode = |input, forgiving| decode_config(input, STANDARD.decode_allow_trailing_bits(forgiving)); - // example from https://github.com/alicemaz/rust-base64/issues/75 + // example from https://github.com/marshallpierce/rust-base64/issues/75 assert!(decode("iYU=", false).is_ok()); // trailing 01 assert_eq!(