Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions bin/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 0.3.11-git

### Patch

- Update `data-encoding` version

## 0.3.10

### Patch
Expand Down
4 changes: 2 additions & 2 deletions bin/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "data-encoding-bin"
version = "0.3.10"
version = "0.3.11-git"
license = "MIT"
edition = "2021"
rust-version = "1.81"
Expand All @@ -16,5 +16,5 @@ name = "data-encoding"
path = "src/main.rs"

[dependencies]
data-encoding = { version = "2.11.1", path = "../lib" }
data-encoding = { version = "2.11.2-git", path = "../lib" }
getopts = "0.2"
7 changes: 7 additions & 0 deletions lib/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## 2.11.2-git

### Patch

- Fix `redundant_explicit_links` rustdoc lint
- Rename lints in `Cargo.toml` to use underscores

## 2.11.1

### Patch
Expand Down
18 changes: 9 additions & 9 deletions lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "data-encoding"
version = "2.11.1"
version = "2.11.2-git"
license = "MIT"
edition = "2018"
rust-version = "1.48"
Expand All @@ -22,11 +22,11 @@ alloc = []
std = ["alloc"]

[lints]
clippy.undocumented-unsafe-blocks = "warn"
rust.elided-lifetimes-in-paths = "warn"
rust.let-underscore-drop = "warn"
rust.missing-debug-implementations = "warn"
rust.missing-docs = "warn"
rust.unreachable-pub = "warn"
rust.unsafe-op-in-unsafe-fn = "warn"
rust.unused-results = "warn"
clippy.undocumented_unsafe_blocks = "warn"
rust.elided_lifetimes_in_paths = "warn"
rust.let_underscore_drop = "warn"
rust.missing_debug_implementations = "warn"
rust.missing_docs = "warn"
rust.unreachable_pub = "warn"
rust.unsafe_op_in_unsafe_fn = "warn"
rust.unused_results = "warn"
6 changes: 3 additions & 3 deletions lib/macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "data-encoding-macro"
version = "0.1.21"
version = "0.1.22-git"
license = "MIT"
edition = "2018"
rust-version = "1.48"
Expand All @@ -13,5 +13,5 @@ description = "Macros for data-encoding"
include = ["Cargo.toml", "LICENSE", "README.md", "src/lib.rs"]

[dependencies]
data-encoding = { version = "2.11.1", path = "..", default-features = false }
data-encoding-macro-internal = { version = "0.1.19", path = "internal" }
data-encoding = { version = "2.11.2-git", path = "..", default-features = false }
data-encoding-macro-internal = { version = "0.1.20-git", path = "internal" }
4 changes: 2 additions & 2 deletions lib/macro/internal/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "data-encoding-macro-internal"
version = "0.1.19"
version = "0.1.20-git"
license = "MIT"
edition = "2018"
rust-version = "1.48"
Expand All @@ -13,7 +13,7 @@ include = ["Cargo.toml", "LICENSE", "README.md", "src/lib.rs"]
proc-macro = true

[dependencies.data-encoding]
version = "2.11.1"
version = "2.11.2-git"
path = "../.."
default-features = false
features = ["alloc"]
Expand Down
6 changes: 3 additions & 3 deletions lib/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -900,7 +900,7 @@ pub type InternalEncoding = &'static [u8];

/// Base-conversion encoding
///
/// See [Specification](struct.Specification.html) for technical details or how to define a new one.
/// See [Specification] for technical details or how to define a new one.
// Required fields:
// 0 - 256 (256) symbols
// 256 - 512 (256) values
Expand Down Expand Up @@ -929,7 +929,7 @@ pub struct Encoding(#[doc(hidden)] pub InternalEncoding);
/// The order matters. The first character of the `from` field is translated to the first character
/// of the `to` field. The second to the second. Etc.
///
/// See [Specification](struct.Specification.html) for more information.
/// See [Specification] for more information.
#[derive(Debug, Clone)]
#[cfg(feature = "alloc")]
pub struct Translate {
Expand All @@ -942,7 +942,7 @@ pub struct Translate {

/// How to wrap the output when encoding
///
/// See [Specification](struct.Specification.html) for more information.
/// See [Specification] for more information.
#[derive(Debug, Clone)]
#[cfg(feature = "alloc")]
pub struct Wrap {
Expand Down
2 changes: 2 additions & 0 deletions lib/v3/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

### Patch

- Fix `redundant_explicit_links` rustdoc lint
- Rename lints in `Cargo.toml` to use underscores
- Use `iter().enumerate()` when possible
- Encode by the greatest multiple of blocks that fits 128 bits
- Use `doc_cfg` instead of `doc_auto_cfg`
Expand Down
24 changes: 12 additions & 12 deletions lib/v3/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,16 @@ alloc = []
std = ["alloc"]

[lints]
rust.elided-lifetimes-in-paths = "warn"
rust.let-underscore-drop = "warn"
rust.missing-debug-implementations = "warn"
rust.missing-docs = "warn"
rust.unreachable-pub = "warn"
rust.unused-results = "warn"
rust.elided_lifetimes_in_paths = "warn"
rust.let_underscore_drop = "warn"
rust.missing_debug_implementations = "warn"
rust.missing_docs = "warn"
rust.unreachable_pub = "warn"
rust.unused_results = "warn"
clippy.pedantic = { level = "warn", priority = -1 }
clippy.assigning-clones = "allow"
clippy.doc-markdown = "allow"
clippy.enum-glob-use = "allow"
clippy.match-bool = "allow"
clippy.semicolon-if-nothing-returned = "allow"
clippy.similar-names = "allow"
clippy.assigning_clones = "allow"
clippy.doc_markdown = "allow"
clippy.enum_glob_use = "allow"
clippy.match_bool = "allow"
clippy.semicolon_if_nothing_returned = "allow"
clippy.similar_names = "allow"
4 changes: 2 additions & 2 deletions lib/v3/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1481,7 +1481,7 @@ use crate::BitOrder::*;
/// The order matters. The first character of the `from` field is translated to the first character
/// of the `to` field. The second to the second. Etc.
///
/// See [Specification](struct.Specification.html) for more information.
/// See [Specification] for more information.
#[derive(Debug, Clone)]
#[cfg(feature = "alloc")]
pub struct Translate {
Expand All @@ -1494,7 +1494,7 @@ pub struct Translate {

/// How to wrap the output when encoding
///
/// See [Specification](struct.Specification.html) for more information.
/// See [Specification] for more information.
#[derive(Debug, Clone)]
#[cfg(feature = "alloc")]
pub struct Wrap {
Expand Down
Loading