Skip to content

Commit 3c055d2

Browse files
authored
base64ct v1.1.0 (#5)
1 parent b176d32 commit 3c055d2

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

base64ct/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## 1.1.0 (2021-09-14)
8+
### Changed
9+
- Moved to `formats` repo; MSRV 1.51+ ([#2])
10+
11+
[#2]: https://github.com/RustCrypto/formats/pull/2
12+
713
## 1.0.1 (2021-08-14)
814
### Fixed
915
- Make `Encoding::decode` reject invalid padding

base64ct/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "base64ct"
3-
version = "1.0.1" # Also update html_root_url in lib.rs when bumping this
3+
version = "1.1.0" # Also update html_root_url in lib.rs when bumping this
44
description = """
55
Pure Rust implementation of Base64 (RFC 4648) which avoids any usages of
66
data-dependent branches/LUTs and thereby provides portable "best effort"
@@ -9,10 +9,10 @@ constant-time operation and embedded-friendly no_std support
99
authors = ["RustCrypto Developers"]
1010
license = "Apache-2.0 OR MIT"
1111
edition = "2018"
12-
documentation = "https://docs.rs/pkcs8"
12+
documentation = "https://docs.rs/base64ct"
1313
repository = "https://github.com/RustCrypto/formats/tree/master/base64ct"
1414
categories = ["cryptography", "encoding", "no-std", "parser-implementations"]
15-
keywords = ["base64", "phc"]
15+
keywords = ["crypto", "base64", "pem", "phc"]
1616
readme = "README.md"
1717

1818
[features]

base64ct/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
#![doc(
7777
html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg",
7878
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg",
79-
html_root_url = "https://docs.rs/base64ct/1.0.1"
79+
html_root_url = "https://docs.rs/base64ct/1.1.0"
8080
)]
8181
#![warn(missing_docs, rust_2018_idioms)]
8282

0 commit comments

Comments
 (0)