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
7 changes: 7 additions & 0 deletions bin/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
5 changes: 2 additions & 3 deletions bin/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
[package]
name = "data-encoding-bin"
version = "0.3.9"
authors = ["Julien Cretin <git@ia0.eu>"]
version = "0.3.10-git"
license = "MIT"
edition = "2021"
rust-version = "1.81"
Expand All @@ -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"
1 change: 0 additions & 1 deletion cmp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
[package]
name = "cmp"
version = "0.1.0"
authors = ["ia0 <git@ia0.eu>"]
license = "MIT"
edition = "2021"
build = "build.rs"
Expand Down
6 changes: 6 additions & 0 deletions lib/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 2.11.1-git

### Patch

- Remove deprecated `authors` field from `Cargo.toml`

## 2.11.0

### Minor
Expand Down
3 changes: 1 addition & 2 deletions lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
[package]
name = "data-encoding"
version = "2.11.0"
authors = ["Julien Cretin <git@ia0.eu>"]
version = "2.11.1-git"
license = "MIT"
edition = "2018"
rust-version = "1.48"
Expand Down
1 change: 0 additions & 1 deletion lib/fuzz/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
[package]
name = "data-encoding-fuzz"
version = "0.0.0"
authors = ["Automatically generated"]
publish = false
edition = "2021"

Expand Down
3 changes: 1 addition & 2 deletions lib/macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
[package]
name = "data-encoding-macro"
version = "0.1.21-git"
authors = ["Julien Cretin <cretin@google.com>"]
license = "MIT"
edition = "2018"
rust-version = "1.48"
Expand All @@ -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" }
3 changes: 1 addition & 2 deletions lib/macro/internal/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
[package]
name = "data-encoding-macro-internal"
version = "0.1.19-git"
authors = ["Julien Cretin <cretin@google.com>"]
license = "MIT"
edition = "2018"
rust-version = "1.48"
Expand All @@ -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"]
Expand Down
6 changes: 6 additions & 0 deletions lib/v3/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 0.1.2-git

### Patch

- Remove deprecated `authors` field from `Cargo.toml`

## 0.1.1

### Patch
Expand Down
3 changes: 1 addition & 2 deletions lib/v3/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
[package]
name = "data-encoding-v3"
version = "0.1.1"
authors = ["Julien Cretin <git@ia0.eu>"]
version = "0.1.2-git"
license = "MIT"
edition = "2024"
rust-version = "1.85"
Expand Down
1 change: 0 additions & 1 deletion nostd/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
[package]
name = "nostd"
version = "0.1.0"
authors = ["Julien Cretin <cretin@google.com>"]
edition = "2021"
license = "MIT"
publish = false
Expand Down
1 change: 0 additions & 1 deletion www/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
[package]
name = "data-encoding-www"
version = "0.1.0"
authors = ["Julien Cretin <cretin@google.com>"]
license = "MIT"
edition = "2021"
repository = "https://github.com/ia0/data-encoding"
Expand Down
Loading