Skip to content

Commit

Permalink
Release 2.5.0 (#92)
Browse files Browse the repository at this point in the history
Fixes #90
  • Loading branch information
ia0 committed Nov 21, 2023
1 parent 35399a8 commit 14391e0
Show file tree
Hide file tree
Showing 9 changed files with 24 additions and 18 deletions.
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.3

### Patch

- Update `data-encoding` version

## 0.3.2

### 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.3-git"
version = "0.3.3"
authors = ["Julien Cretin <git@ia0.eu>"]
license = "MIT"
edition = "2021"
Expand All @@ -16,5 +16,5 @@ name = "data-encoding"
path = "src/main.rs"

[dependencies]
data-encoding = { version = "2.5.0-git", path = "../lib" }
data-encoding = { version = "2.5.0", path = "../lib" }
getopts = "0.2"
2 changes: 1 addition & 1 deletion lib/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## 2.5.0-git
## 2.5.0

### Minor

Expand Down
2 changes: 1 addition & 1 deletion lib/Cargo.lock.msrv

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[package]
name = "data-encoding"
version = "2.5.0-git"
version = "2.5.0"
authors = ["Julien Cretin <git@ia0.eu>"]
license = "MIT"
edition = "2018"
rust-version = "1.70"
rust-version = "1.48"
keywords = ["no_std", "base64", "base32", "hex"]
categories = ["encoding", "no-std"]
readme = "README.md"
Expand Down
6 changes: 3 additions & 3 deletions lib/macro/Cargo.lock.msrv

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions lib/macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[package]
name = "data-encoding-macro"
version = "0.1.14-git"
version = "0.1.14"
authors = ["Julien Cretin <cretin@google.com>"]
license = "MIT"
edition = "2018"
rust-version = "1.70"
rust-version = "1.48"
keywords = ["no_std", "base64", "base32", "hex", "macro"]
categories = ["encoding", "no-std"]
readme = "README.md"
Expand All @@ -14,5 +14,5 @@ description = "Macros for data-encoding"
include = ["Cargo.toml", "LICENSE", "README.md", "src/lib.rs"]

[dependencies]
data-encoding = { version = "2.5.0-git", path = "..", default-features = false }
data-encoding-macro-internal = { version = "0.1.12-git", path = "internal" }
data-encoding = { version = "2.5.0", path = "..", default-features = false }
data-encoding-macro-internal = { version = "0.1.12", path = "internal" }
4 changes: 2 additions & 2 deletions lib/macro/internal/Cargo.lock.msrv

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions lib/macro/internal/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[package]
name = "data-encoding-macro-internal"
version = "0.1.12-git"
version = "0.1.12"
authors = ["Julien Cretin <cretin@google.com>"]
license = "MIT"
edition = "2018"
rust-version = "1.70"
rust-version = "1.48"
description = "Internal library for data-encoding-macro"
readme = "README.md"
repository = "https://github.com/ia0/data-encoding"
Expand All @@ -14,7 +14,7 @@ include = ["Cargo.toml", "LICENSE", "README.md", "src/lib.rs"]
proc-macro = true

[dependencies.data-encoding]
version = "2.5.0-git"
version = "2.5.0"
path = "../.."
default-features = false
features = ["alloc"]
Expand Down

0 comments on commit 14391e0

Please sign in to comment.