diff --git a/bin/CHANGELOG.md b/bin/CHANGELOG.md index 7ab04ad..69ea42f 100644 --- a/bin/CHANGELOG.md +++ b/bin/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## 0.3.10-git + +### Patch + +- Remove deprecated `authors` field from `Cargo.toml` +- Update `data-encoding` version + ## 0.3.9 ### Patch diff --git a/bin/Cargo.toml b/bin/Cargo.toml index c865628..42959d3 100644 --- a/bin/Cargo.toml +++ b/bin/Cargo.toml @@ -1,7 +1,6 @@ [package] name = "data-encoding-bin" -version = "0.3.9" -authors = ["Julien Cretin "] +version = "0.3.10-git" license = "MIT" edition = "2021" rust-version = "1.81" @@ -17,5 +16,5 @@ name = "data-encoding" path = "src/main.rs" [dependencies] -data-encoding = { version = "2.11.0", path = "../lib" } +data-encoding = { version = "2.11.1-git", path = "../lib" } getopts = "0.2" diff --git a/cmp/Cargo.toml b/cmp/Cargo.toml index 7413c96..373dbc3 100644 --- a/cmp/Cargo.toml +++ b/cmp/Cargo.toml @@ -1,7 +1,6 @@ [package] name = "cmp" version = "0.1.0" -authors = ["ia0 "] license = "MIT" edition = "2021" build = "build.rs" diff --git a/lib/CHANGELOG.md b/lib/CHANGELOG.md index e9b8618..bf6bac7 100644 --- a/lib/CHANGELOG.md +++ b/lib/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 2.11.1-git + +### Patch + +- Remove deprecated `authors` field from `Cargo.toml` + ## 2.11.0 ### Minor diff --git a/lib/Cargo.toml b/lib/Cargo.toml index 6198a63..ad9fa55 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -1,7 +1,6 @@ [package] name = "data-encoding" -version = "2.11.0" -authors = ["Julien Cretin "] +version = "2.11.1-git" license = "MIT" edition = "2018" rust-version = "1.48" diff --git a/lib/fuzz/Cargo.toml b/lib/fuzz/Cargo.toml index 3f734b7..65a82df 100644 --- a/lib/fuzz/Cargo.toml +++ b/lib/fuzz/Cargo.toml @@ -1,7 +1,6 @@ [package] name = "data-encoding-fuzz" version = "0.0.0" -authors = ["Automatically generated"] publish = false edition = "2021" diff --git a/lib/macro/Cargo.toml b/lib/macro/Cargo.toml index f85dbea..d7c6cd0 100644 --- a/lib/macro/Cargo.toml +++ b/lib/macro/Cargo.toml @@ -1,7 +1,6 @@ [package] name = "data-encoding-macro" version = "0.1.21-git" -authors = ["Julien Cretin "] license = "MIT" edition = "2018" rust-version = "1.48" @@ -14,5 +13,5 @@ description = "Macros for data-encoding" include = ["Cargo.toml", "LICENSE", "README.md", "src/lib.rs"] [dependencies] -data-encoding = { version = "2.11.0", path = "..", default-features = false } +data-encoding = { version = "2.11.1-git", path = "..", default-features = false } data-encoding-macro-internal = { version = "0.1.19-git", path = "internal" } diff --git a/lib/macro/internal/Cargo.toml b/lib/macro/internal/Cargo.toml index 3de3784..5a77439 100644 --- a/lib/macro/internal/Cargo.toml +++ b/lib/macro/internal/Cargo.toml @@ -1,7 +1,6 @@ [package] name = "data-encoding-macro-internal" version = "0.1.19-git" -authors = ["Julien Cretin "] license = "MIT" edition = "2018" rust-version = "1.48" @@ -14,7 +13,7 @@ include = ["Cargo.toml", "LICENSE", "README.md", "src/lib.rs"] proc-macro = true [dependencies.data-encoding] -version = "2.11.0" +version = "2.11.1-git" path = "../.." default-features = false features = ["alloc"] diff --git a/lib/v3/CHANGELOG.md b/lib/v3/CHANGELOG.md index 2121dfd..db64856 100644 --- a/lib/v3/CHANGELOG.md +++ b/lib/v3/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 0.1.2-git + +### Patch + +- Remove deprecated `authors` field from `Cargo.toml` + ## 0.1.1 ### Patch diff --git a/lib/v3/Cargo.toml b/lib/v3/Cargo.toml index 7829563..54e61f7 100644 --- a/lib/v3/Cargo.toml +++ b/lib/v3/Cargo.toml @@ -1,7 +1,6 @@ [package] name = "data-encoding-v3" -version = "0.1.1" -authors = ["Julien Cretin "] +version = "0.1.2-git" license = "MIT" edition = "2024" rust-version = "1.85" diff --git a/nostd/Cargo.toml b/nostd/Cargo.toml index b89d977..abdce8f 100644 --- a/nostd/Cargo.toml +++ b/nostd/Cargo.toml @@ -1,7 +1,6 @@ [package] name = "nostd" version = "0.1.0" -authors = ["Julien Cretin "] edition = "2021" license = "MIT" publish = false diff --git a/www/Cargo.toml b/www/Cargo.toml index bca5756..37691f4 100644 --- a/www/Cargo.toml +++ b/www/Cargo.toml @@ -1,7 +1,6 @@ [package] name = "data-encoding-www" version = "0.1.0" -authors = ["Julien Cretin "] license = "MIT" edition = "2021" repository = "https://github.com/ia0/data-encoding"